2025-03-07 17:55:44 +01:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2025-03-21 13:20:23 +01:00
|
|
|
"target": "ES2019",
|
|
|
|
|
"module": "ESNext",
|
2025-03-07 17:55:44 +01:00
|
|
|
"moduleResolution": "node",
|
2025-03-21 13:20:23 +01:00
|
|
|
"declaration": true,
|
|
|
|
|
"declarationDir": "dist/types",
|
|
|
|
|
"outDir": "dist",
|
2025-03-07 17:55:44 +01:00
|
|
|
"strict": true,
|
2025-03-21 13:20:23 +01:00
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"skipLibCheck": true,
|
2025-03-07 17:55:44 +01:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"resolveJsonModule": true,
|
2025-05-30 22:18:13 -04:00
|
|
|
"sourceMap": true,
|
|
|
|
|
"baseUrl": ".",
|
|
|
|
|
"paths": {
|
|
|
|
|
"~/*": ["./src/*"]
|
|
|
|
|
}
|
2025-03-07 17:55:44 +01:00
|
|
|
},
|
2025-03-21 13:20:23 +01:00
|
|
|
"include": ["src/**/*"],
|
|
|
|
|
"exclude": ["node_modules", "dist", "tests"]
|
2025-03-07 17:55:44 +01:00
|
|
|
}
|