2024-02-13 20:08:49 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
"strict": true,
|
|
|
|
"declaration": true,
|
|
|
|
"removeComments": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"target": "es2022",
|
|
|
|
"sourceMap": true,
|
|
|
|
"outDir": "./dist",
|
|
|
|
"incremental": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"rootDirs": ["src"],
|
2024-02-19 19:03:51 +02:00
|
|
|
"baseUrl": "./"
|
2024-02-13 20:08:49 +02:00
|
|
|
},
|
2024-02-29 18:26:55 +02:00
|
|
|
"include": ["src/**/*.ts"],
|
2024-02-13 20:08:49 +02:00
|
|
|
"exclude": ["dist", "node_modules"]
|
|
|
|
}
|