22 lines
593 B
JSON
22 lines
593 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["ESNext"],
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"target": "ESNext",
|
|
"allowJs": true,
|
|
"outDir": "dist",
|
|
"sourceMap": false,
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"skipLibCheck": true,
|
|
"skipDefaultLibCheck": true,
|
|
"resolveJsonModule": true,
|
|
"importHelpers": true,
|
|
"strict": true,
|
|
},
|
|
"include": ["src"],
|
|
"exclude": ["node_modules", "**/*.spec.ts", "config"]
|
|
}
|