public-pool/tsconfig.json

21 lines
546 B
JSON
Raw Normal View History

2023-06-09 22:40:35 -04:00
{
"compilerOptions": {
"module": "commonjs",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
2023-06-11 13:17:07 -04:00
"target": "ES2020",
2023-06-09 22:40:35 -04:00
"sourceMap": true,
"outDir": "./dist",
"baseUrl": "./",
"incremental": true,
"skipLibCheck": true,
"strictNullChecks": false,
"noImplicitAny": false,
"strictBindCallApply": false,
"forceConsistentCasingInFileNames": false,
2023-06-17 10:10:14 -04:00
"noFallthroughCasesInSwitch": false,
2023-06-09 22:40:35 -04:00
}
2023-06-11 13:17:07 -04:00
}