buster/apps/web-tss/tsconfig.json

36 lines
875 B
JSON

{
"$schema": "https://json.schemastore.org/tsconfig",
"include": [
"src/**/*.ts",
"src/**/*.tsx"
],
"exclude": ["node_modules", "dist"],
"compilerOptions": {
"target": "ES2022",
"jsx": "react-jsx",
"module": "ESNext",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"types": ["vite/client"],
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": false,
"noEmit": true,
"skipLibCheck": true,
"strict": true,
"noUnusedParameters": false,
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true,
"esModuleInterop": true,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"],
"react": ["./node_modules/@types/react"]
}
},
"references": [
{ "path": "../../packages/server-shared" },
{ "path": "./tsconfig.node.json" }
]
}