GameServerManager/server/tsconfig.json
2025-08-09 16:47:57 +08:00

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"
]
}