mapserver/tsconfig.json
2025-11-16 19:21:30 +08:00

22 lines
510 B
JSON

{
"compilerOptions": {
"outDir": "build",
"target": "ESNext",
"module": "CommonJS",
"moduleResolution": "node",
"strict": true,
"allowJs": true,
"strictNullChecks": false,
"esModuleInterop": true,
"experimentalDecorators": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"useDefineForClassFields": false,
"allowSyntheticDefaultImports": true,
"noImplicitAny": false,
"noImplicitThis": false
},
"include": [
"src"
]
}