Files
GameServerManager/server/tsconfig.json
2025-07-08 19:11:20 +08:00

35 lines
800 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"lib": ["ES2020"],
"module": "ESNext",
"moduleResolution": "node",
"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,
"noImplicitAny": false
},
"include": [
"src/**/*"
],
"exclude": [
"node_modules",
"dist",
"**/*.test.ts"
]
}