36 lines
825 B
JSON
36 lines
825 B
JSON
{
|
|
"compileOnSave": true,
|
|
"compilerOptions": {
|
|
"target": "es2017",
|
|
"module": "commonjs",
|
|
"strict": true,
|
|
"noImplicitAny": false,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"charset": "utf8",
|
|
"allowJs": false,
|
|
"pretty": true,
|
|
"noEmitOnError": false,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"allowUnreachableCode": false,
|
|
"allowUnusedLabels": false,
|
|
"strictPropertyInitialization": false,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"skipLibCheck": true,
|
|
"skipDefaultLibCheck": true,
|
|
"inlineSourceMap": true,
|
|
"importHelpers": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@db/*": ["app/db/*"],
|
|
"@consts/*": ["app/consts/*"]
|
|
},
|
|
},
|
|
"exclude": [
|
|
"app/public",
|
|
"app/views",
|
|
"node_modules*"
|
|
]
|
|
}
|