19 lines
451 B
JSON
19 lines
451 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["ESNext"],
|
|
"module": "Node16",
|
|
"moduleResolution": "Node16",
|
|
"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"]
|
|
}
|