Files
Checkmate/server/tsconfig.json
T
Alex Holliday ef2cccf16e ts config
2026-01-09 13:36:58 -08:00

20 lines
413 B
JSON

{
"compilerOptions": {
"rootDir": "./src",
"allowJs": true,
"checkJs": false,
"paths": {
"@/*": ["./src/*"] // allows "@/db" -> "./src/db"
},
"outDir": "./dist",
"strict": true,
"esModuleInterop": true,
"module": "nodenext",
"moduleResolution": "nodenext",
"skipLibCheck": true,
"noUncheckedIndexedAccess": true
},
"include": ["src"],
"exclude": ["tests", "dist", "node_modules"]
}