16 lines
388 B
JSON
16 lines
388 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"extends": "./base.json",
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"strictBindCallApply": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"outDir": "./dist",
|
|
"incremental": true
|
|
}
|
|
}
|