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"],
|
2026-03-24 20:07:31 +05:30
|
|
|
"types": ["storybook-addon-vis/matcher"],
|
2025-10-13 11:54:50 +01:00
|
|
|
"strict": true,
|
|
|
|
|
"paths": {
|
2026-01-22 14:17:36 +00:00
|
|
|
"@test-utils": ["./src/test/utils/index"]
|
2025-10-13 11:54:50 +01:00
|
|
|
}
|
|
|
|
|
},
|
2026-01-21 15:22:13 +00:00
|
|
|
"include": ["./src/**/*.ts", "./src/**/*.tsx", ".storybook/*.ts", ".storybook/*.tsx"],
|
2026-01-21 10:04:27 +00:00
|
|
|
"references": [{ "path": "./tsconfig.node.json" }]
|
2025-10-13 11:54:50 +01:00
|
|
|
}
|