2023-07-06 16:37:47 +02:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2024-01-30 15:23:33 -08:00
|
|
|
"module": "esnext",
|
|
|
|
|
"moduleResolution": "bundler",
|
2023-07-06 16:37:47 +02:00
|
|
|
"strict": true,
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"removeComments": true,
|
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"resolveJsonModule": true,
|
2025-11-27 21:31:16 +00:00
|
|
|
"target": "es2023",
|
2023-07-06 16:37:47 +02:00
|
|
|
"sourceMap": true,
|
|
|
|
|
"outDir": "./dist",
|
|
|
|
|
"incremental": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"baseUrl": "./",
|
2024-01-30 15:23:33 -08:00
|
|
|
"types": ["vitest/globals"]
|
2023-07-06 16:37:47 +02:00
|
|
|
},
|
2024-02-02 04:18:00 +01:00
|
|
|
"exclude": ["dist", "node_modules"]
|
2023-07-06 16:37:47 +02:00
|
|
|
}
|