mirror of
https://github.com/Kingsrook/qqq-frontend-material-dashboard.git
synced 2025-07-17 21:00:45 +00:00
46 lines
933 B
JSON
46 lines
933 B
JSON
{
|
|
"compilerOptions": {
|
|
"typeRoots": [
|
|
"node_modules/@types",
|
|
"src/types"
|
|
],
|
|
"lib": [
|
|
"DOM",
|
|
"ES6",
|
|
"esnext",
|
|
"ScriptHost",
|
|
"ES2016.Array.Include"
|
|
],
|
|
"allowJs": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"baseUrl": "src",
|
|
"declaration": true,
|
|
"downlevelIteration": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"isolatedModules": true,
|
|
"jsx": "react-jsx",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"outDir": "lib",
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"strictNullChecks": false,
|
|
"target": "es2019"
|
|
},
|
|
"include": [
|
|
"src"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"lib",
|
|
"**/*.test.ts",
|
|
"src/qqq/assets"
|
|
]
|
|
}
|