Cascade/tsconfig.json
thecookingsenpai 1d4bf6058e Initial commit
2023-12-25 13:25:59 +01:00

24 lines
702 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"target": "ESNext",
"sourceMap": true,
"sourceRoot": "/",
"inlineSources": true,
"outDir": "./dist",
"baseUrl": "./",
"types": ["node"],
"incremental": true,
"skipLibCheck": true,
"strictNullChecks": false,
"noImplicitAny": false,
"strictBindCallApply": false,
"forceConsistentCasingInFileNames": false,
"noFallthroughCasesInSwitch": false
}
}