tgfs/tsconfig.json

23 lines
575 B
JSON
Raw Normal View History

2023-07-03 19:01:20 +00:00
{
"compilerOptions": {
"module": "commonjs",
2023-07-09 14:36:53 +00:00
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"target": "es2017",
2023-07-03 19:01:20 +00:00
"sourceMap": true,
2023-07-09 14:36:53 +00:00
"outDir": "./dist",
"baseUrl": "./",
"incremental": true,
"skipLibCheck": true,
"strictNullChecks": false,
"noImplicitAny": false,
"strictBindCallApply": false,
"forceConsistentCasingInFileNames": false,
2023-07-25 04:27:52 +00:00
"noFallthroughCasesInSwitch": false,
"esModuleInterop": true
2023-07-09 14:36:53 +00:00
}
2023-07-03 19:01:20 +00:00
}