Files

21 lines
466 B
JSON

{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "./base.json",
"compilerOptions": {
"module": "commonjs",
"target": "ES2021",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"removeComments": true,
"strictNullChecks": true,
"noImplicitAny": true,
"strictBindCallApply": true,
"outDir": "./dist",
"baseUrl": "./",
"incremental": true,
"paths": {
"@/*": ["src/*"]
}
}
}