mirror of
https://github.com/MCSManager/MCSManager.git
synced 2025-01-18 15:04:04 +08:00
25 lines
485 B
JSON
25 lines
485 B
JSON
// Copyright (C) 2022 MCSManager <mcsmanager-dev@outlook.com>
|
|
|
|
{
|
|
"compilerOptions": {
|
|
"allowJs": false,
|
|
"module": "commonjs",
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"target": "ES2018",
|
|
"noImplicitAny": true,
|
|
"moduleResolution": "node",
|
|
"sourceMap": true,
|
|
"outDir": "dist",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"*": [
|
|
"node_modules/*",
|
|
"src/types/*"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
]
|
|
} |