2024-02-13 13:08:49 -05:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"module": "esnext",
|
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
|
"strict": true,
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"removeComments": true,
|
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"resolveJsonModule": true,
|
2025-11-27 21:31:16 +00:00
|
|
|
"target": "es2023",
|
2026-07-20 23:47:14 -04:00
|
|
|
"lib": ["dom", "ESNext"],
|
2024-02-13 13:08:49 -05:00
|
|
|
"sourceMap": true,
|
|
|
|
|
"outDir": "./dist",
|
|
|
|
|
"incremental": true,
|
|
|
|
|
"skipLibCheck": true,
|
2026-04-07 17:15:55 +02:00
|
|
|
"paths": {
|
|
|
|
|
"src/*": ["./src/*"]
|
|
|
|
|
},
|
2024-02-13 13:08:49 -05:00
|
|
|
"esModuleInterop": true,
|
|
|
|
|
},
|
2026-03-04 15:19:13 +01:00
|
|
|
"include": ["src/**/*.ts", "vitest*.config.ts"],
|
2024-02-13 13:08:49 -05:00
|
|
|
"exclude": ["dist", "node_modules"]
|
|
|
|
|
}
|