MCSManager/daemon/tsconfig.json

25 lines
593 B
JSON
Raw Permalink Normal View History

2023-08-20 23:06:38 +08:00
{
"compilerOptions": {
2024-03-14 15:06:51 +08:00
"skipLibCheck": false,
2024-03-14 14:21:31 +08:00
"strictNullChecks": true,
"noImplicitAny": true,
"noImplicitThis": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
2023-09-05 18:47:10 +08:00
"resolveJsonModule": true,
2023-08-20 23:06:38 +08:00
"module": "commonjs",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"target": "ES2018",
"moduleResolution": "node",
"sourceMap": true,
"outDir": "dist",
"baseUrl": ".",
"paths": {
2023-09-05 18:47:10 +08:00
"@languages/*": ["../languages/*"],
"*": ["node_modules/*", "src/types/*"]
2023-08-20 23:06:38 +08:00
}
},
2023-09-05 18:47:10 +08:00
"include": ["src/**/*"]
}