2024-04-09 16:21:05 +05:30
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2024-05-25 08:16:13 -04:00
|
|
|
"lib": [
|
|
|
|
|
"ESNext"
|
|
|
|
|
],
|
2024-05-07 11:52:53 +05:30
|
|
|
"module": "Node16",
|
|
|
|
|
"moduleResolution": "Node16",
|
2024-04-09 16:21:05 +05:30
|
|
|
"target": "ESNext",
|
|
|
|
|
"outDir": "dist",
|
|
|
|
|
"sourceMap": false,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"skipDefaultLibCheck": true
|
|
|
|
|
},
|
2024-05-25 08:16:13 -04:00
|
|
|
"include": [
|
|
|
|
|
"src"
|
|
|
|
|
],
|
|
|
|
|
"exclude": [
|
|
|
|
|
"node_modules",
|
|
|
|
|
"**/*.spec.ts"
|
|
|
|
|
]
|
2024-04-09 16:21:05 +05:30
|
|
|
}
|