MCSManager/tsconfig.json

22 lines
484 B
JSON
Raw Permalink Normal View History

2022-08-05 16:10:27 +08:00
// Copyright (C) 2022 MCSManager <mcsmanager-dev@outlook.com>
2022-02-02 13:36:08 +08:00
{
"compilerOptions": {
2022-09-24 10:28:12 +08:00
"resolveJsonModule": true,
"esModuleInterop": true,
2023-01-29 11:50:24 +08:00
"allowJs": true,
2022-02-02 13:36:08 +08:00
"module": "commonjs",
"allowSyntheticDefaultImports": true,
"target": "ES2018",
"noImplicitAny": true,
"moduleResolution": "node",
"sourceMap": true,
"outDir": "dist",
"baseUrl": ".",
"paths": {
2022-09-24 10:28:12 +08:00
"*": ["node_modules/*", "src/types/*"]
2022-02-02 13:36:08 +08:00
}
},
2022-09-24 10:28:12 +08:00
"include": ["src/**/*"]
}