Spaces:
Build error
Build error
File size: 821 Bytes
5285b72 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
{
"compilerOptions": {
"allowJs": false,
"allowSyntheticDefaultImports": true,
"allowUnreachableCode": false,
"baseUrl": ".",
"esModuleInterop": true,
"experimentalDecorators": false,
"forceConsistentCasingInFileNames": true,
"incremental": true,
"isolatedModules": true,
"jsx": "react-jsx",
"lib": ["DOM", "DOM.Iterable", "ES2022"],
"module": "ESNext",
"moduleResolution": "Bundler",
"noEmit": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noUncheckedIndexedAccess": true,
"paths": {
"~/*": ["./frontend/*"]
},
"resolveJsonModule": true,
"skipLibCheck": false,
"strict": true,
"strictNullChecks": true,
"target": "ES2022"
},
"include": ["env.d.ts", "frontend/**/*.ts", "frontend/**/*.tsx"]
}
|