2025-07-05 22:49:28 +02:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ES2020",
|
|
|
|
|
"module": "ESNext",
|
2025-07-13 08:35:49 -04:00
|
|
|
"moduleResolution": "node",
|
2025-07-05 22:49:28 +02:00
|
|
|
"jsx": "react-jsx",
|
|
|
|
|
"jsxImportSource": "react",
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"declarationMap": true,
|
2025-07-13 08:35:49 -04:00
|
|
|
"declarationDir": "./dist/types",
|
2025-07-05 22:49:28 +02:00
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"strict": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"outDir": "./dist",
|
|
|
|
|
"rootDir": "./src",
|
|
|
|
|
"baseUrl": "./src",
|
|
|
|
|
"paths": {
|
|
|
|
|
"~/*": ["./*"]
|
2025-07-13 08:35:49 -04:00
|
|
|
},
|
|
|
|
|
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
|
|
|
|
"resolveJsonModule": true
|
2025-07-05 22:49:28 +02:00
|
|
|
},
|
2025-07-12 22:19:05 +02:00
|
|
|
"include": ["src/**/*"],
|
2025-07-16 09:44:33 -04:00
|
|
|
"exclude": [
|
|
|
|
|
"dist",
|
|
|
|
|
"node_modules",
|
|
|
|
|
"**/*.test.ts",
|
|
|
|
|
"**/*.test.tsx",
|
|
|
|
|
"**/*.spec.ts",
|
|
|
|
|
"**/*.spec.tsx"
|
|
|
|
|
]
|
2025-07-05 22:49:28 +02:00
|
|
|
}
|