2025-10-13 11:54:50 +01:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"allowImportingTsExtensions": true,
|
|
|
|
|
"experimentalDecorators": false,
|
|
|
|
|
"emitDecoratorMetadata": false,
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"useDefineForClassFields": true,
|
|
|
|
|
"module": "es2022",
|
2025-11-12 13:32:59 +01:00
|
|
|
"moduleResolution": "bundler",
|
2025-10-13 11:54:50 +01:00
|
|
|
"target": "es2022",
|
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
|
"sourceMap": false,
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"jsx": "react",
|
|
|
|
|
"lib": ["es2022", "es2024.promise", "dom", "dom.iterable"],
|
|
|
|
|
"strict": true,
|
|
|
|
|
"paths": {
|
2026-01-21 10:04:27 +00:00
|
|
|
"jest-matrix-react": ["./src/test/utils/jest-matrix-react"]
|
2025-10-13 11:54:50 +01:00
|
|
|
}
|
|
|
|
|
},
|
2026-01-21 10:04:27 +00:00
|
|
|
"include": ["./src/**/*.ts", "./src/**/*.tsx"],
|
|
|
|
|
"references": [{ "path": "./tsconfig.node.json" }]
|
2025-10-13 11:54:50 +01:00
|
|
|
}
|