mirror of
https://github.com/MCSManager/MCSManager.git
synced 2024-11-21 03:12:10 +08:00
26 lines
618 B
JSON
Executable File
26 lines
618 B
JSON
Executable File
{
|
|
"compilerOptions": {
|
|
"skipLibCheck": false,
|
|
"strictNullChecks": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"module": "commonjs",
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"target": "ES2018",
|
|
"moduleResolution": "node",
|
|
"sourceMap": true,
|
|
"outDir": "dist",
|
|
"declaration": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@languages/*": ["../languages/*"],
|
|
"*": ["node_modules/*", "src/types/*"]
|
|
}
|
|
},
|
|
"include": ["src/**/*"]
|
|
}
|