monorepo/apps/talk/tsconfig.json

22 lines
544 B
JSON

{
"compilerOptions": {
"incremental": true,
"target": "ES2023",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"baseUrl": "./",
"module": "commonjs",
"strictBindCallApply": false,
"strictNullChecks": true,
"noFallthroughCasesInSwitch": false,
"noImplicitAny": false,
"declaration": true,
"outDir": "./dist",
"removeComments": true,
"sourceMap": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true
}
}