colyseusTest / tsconfig.json
Kano001's picture
Update tsconfig.json
a03d01d verified
raw
history blame contribute delete
411 Bytes
{
"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
},
"include": [
"src"
]
}