forked from mirror/MCSManager
22 lines
484 B
JSON
Executable File
22 lines
484 B
JSON
Executable File
// Copyright (C) 2022 MCSManager <mcsmanager-dev@outlook.com>
|
|
|
|
{
|
|
"compilerOptions": {
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"allowJs": true,
|
|
"module": "commonjs",
|
|
"allowSyntheticDefaultImports": true,
|
|
"target": "ES2018",
|
|
"noImplicitAny": true,
|
|
"moduleResolution": "node",
|
|
"sourceMap": true,
|
|
"outDir": "dist",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"*": ["node_modules/*", "src/types/*"]
|
|
}
|
|
},
|
|
"include": ["src/**/*"]
|
|
}
|