18 lines
419 B
JSON
18 lines
419 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"lib": ["ESNext"],
|
||
|
"module": "commonjs",
|
||
|
"target": "ESNext",
|
||
|
"outDir": "dist",
|
||
|
"sourceMap": false,
|
||
|
"esModuleInterop": true,
|
||
|
"experimentalDecorators": true,
|
||
|
"emitDecoratorMetadata": true,
|
||
|
"allowSyntheticDefaultImports": true,
|
||
|
"skipLibCheck": true,
|
||
|
"skipDefaultLibCheck": true
|
||
|
},
|
||
|
"include": ["src"],
|
||
|
"exclude": ["node_modules", "**/*.spec.ts"]
|
||
|
}
|