Files
cfw-autumn/server/tsconfig.json
2025-06-03 09:05:06 +01:00

34 lines
750 B
JSON

{
"ts-node": {
"esm": true,
"experimentalSpecifier": true
},
"compilerOptions": {
"target": "ES2020",
"moduleResolution": "NodeNext", // or "node16"/"nodenext"
"module": "NodeNext", // or "node16"/"nodenext"
"declaration": true,
"rootDir": ".",
"baseUrl": ".",
"outDir": "./dist",
"strict": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"paths": {
"@/*": ["src/*"],
"@shared/*": ["../shared/*"],
"@scripts/*": ["scripts/*"]
}
},
"include": ["src", "tests", "scripts"],
"references": [
{
"path": "../shared"
}
],
"exclude": ["node_modules", "dist"]
}