tgfs/tsconfig.json

26 lines
624 B
JSON
Raw Permalink 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,
2024-02-09 22:17:08 +00:00
"target": "es2020",
2023-07-03 19:01:20 +00:00
"sourceMap": true,
2023-07-09 14:36:53 +00:00
"outDir": "./dist",
"baseUrl": "./",
2023-08-28 14:55:01 +00:00
"paths": {
"src/*": ["./src/*"]
},
2023-07-09 14:36:53 +00:00
"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
}