32 lines
718 B
JSON
32 lines
718 B
JSON
{
|
|
"compileOnSave": true,
|
|
"compilerOptions": {
|
|
"declaration": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"inlineSourceMap": true,
|
|
"module": "commonjs",
|
|
"newLine": "lf",
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUnusedLocals": true,
|
|
"outDir": "dist",
|
|
"pretty": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"strictPropertyInitialization": false,
|
|
"stripInternal": true,
|
|
"strictNullChecks": true,
|
|
"suppressImplicitAnyIndexErrors": true,
|
|
"target": "ES2018"
|
|
},
|
|
"exclude": [
|
|
"app/public",
|
|
"app/views",
|
|
"dist",
|
|
"node_modules*",
|
|
"test",
|
|
"**/*.d.ts",
|
|
"**/*.spec.ts"
|
|
]
|
|
}
|