2023-05-08 07:46:46 +00:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"incremental": true,
|
|
|
|
|
"target": "es2020",
|
2024-08-14 13:03:50 +02:00
|
|
|
"lib": ["es2020"],
|
2023-05-08 07:46:46 +00:00
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"module": "commonjs",
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"inlineSourceMap": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"noUnusedLocals": false,
|
|
|
|
|
"noUnusedParameters": false,
|
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
|
"traceResolution": false,
|
|
|
|
|
"listEmittedFiles": false,
|
|
|
|
|
"listFiles": false,
|
|
|
|
|
"pretty": true,
|
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
|
"outDir": "dist",
|
2024-08-14 13:03:50 +02:00
|
|
|
"types": ["node"]
|
2023-05-08 07:46:46 +00:00
|
|
|
}
|
|
|
|
|
}
|