44 lines
798 B
JSON
44 lines
798 B
JSON
{
|
|
"include": [
|
|
"client/src/**/*",
|
|
"shared/**/*",
|
|
"server/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"build",
|
|
"dist",
|
|
"**/*.test.ts"
|
|
],
|
|
"compilerOptions": {
|
|
"incremental": true,
|
|
"tsBuildInfoFile": "./node_modules/typescript/tsbuildinfo",
|
|
"noEmit": true,
|
|
"module": "ESNext",
|
|
"strict": true,
|
|
"lib": [
|
|
"esnext",
|
|
"dom",
|
|
"dom.iterable"
|
|
],
|
|
"jsx": "preserve",
|
|
"downlevelIteration": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"allowImportingTsExtensions": true,
|
|
"moduleResolution": "bundler",
|
|
"baseUrl": ".",
|
|
"types": [
|
|
"node",
|
|
"vite/client"
|
|
],
|
|
"paths": {
|
|
"@/*": [
|
|
"./client/src/*"
|
|
],
|
|
"@shared/*": [
|
|
"./shared/*"
|
|
]
|
|
}
|
|
}
|
|
} |