Files
srv/tsconfig.json
WangXinghao da90aa774a init
2025-11-04 18:08:19 +08:00

20 lines
408 B
JSON

{
"compilerOptions": {
"rootDir": "src",
"outDir": "dist",
"module": "CommonJS",
"moduleResolution": "node",
"target": "ES2020",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
}
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]
}