20 lines
505 B
JSON
20 lines
505 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"module": "commonjs",
|
||
|
"declaration": false,
|
||
|
"removeComments": true,
|
||
|
"emitDecoratorMetadata": true,
|
||
|
"experimentalDecorators": true,
|
||
|
"allowSyntheticDefaultImports": true,
|
||
|
"target": "es2017",
|
||
|
"sourceMap": true,
|
||
|
"outDir": "./dist",
|
||
|
"baseUrl": "./src",
|
||
|
"incremental": true,
|
||
|
"skipLibCheck": true,
|
||
|
"resolveJsonModule": true,
|
||
|
"strictPropertyInitialization": false
|
||
|
},
|
||
|
"exclude": ["node_modules", "dist", "test", "**/*spec.ts", "frontend"]
|
||
|
}
|