zzz / frontend /tsconfig.json
ar08's picture
Upload 1040 files
246d201 verified
{
"include": [
"**/*.ts",
"**/*.tsx",
"**/.server/**/*.ts",
"**/.server/**/*.tsx",
"**/.client/**/*.ts",
"**/.client/**/*.tsx",
".react-router/types/**/*",
],
"compilerOptions": {
"lib": [
"dom",
"dom.iterable",
"es2022"
],
"target": "es2022",
"types": [
"@react-router/node",
"vite/client",
],
"rootDirs": [
".",
"./.react-router/types"
],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "react-jsx",
"baseUrl": ".",
"paths": {
"#/*": [
"./src/*"
]
},
// Vite takes care of building everything, not tsc.
"noEmit": true
}
}