Files
task-manager/tsconfig.json
T
2025-12-12 08:35:48 +01:00

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/*"
]
}
}
}