mirror of
https://github.com/GSManagerXZ/GameServerManager.git
synced 2025-10-04 13:51:58 +08:00
34 lines
No EOL
775 B
JSON
34 lines
No EOL
775 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"lib": ["ES2020"],
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"allowJs": true,
|
|
"strict": false,
|
|
"noEmit": false,
|
|
"declaration": true,
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"removeComments": true,
|
|
"noImplicitAny": false,
|
|
"strictNullChecks": false,
|
|
"strictFunctionTypes": false,
|
|
"noImplicitThis": false,
|
|
"noImplicitReturns": false,
|
|
"noFallthroughCasesInSwitch": false,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": false
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist",
|
|
"**/*.test.ts"
|
|
]
|
|
} |