Michael Telatynski c0373321af
Switch jest->vitest
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
2026-01-21 14:30:25 +00:00

26 lines
820 B
JSON

{
"compilerOptions": {
"allowImportingTsExtensions": true,
"experimentalDecorators": false,
"emitDecoratorMetadata": false,
"resolveJsonModule": true,
"esModuleInterop": true,
"useDefineForClassFields": true,
"module": "es2022",
"moduleResolution": "bundler",
"target": "es2022",
"noUnusedLocals": true,
"sourceMap": false,
"declaration": true,
"jsx": "react",
"lib": ["es2022", "es2024.promise", "dom", "dom.iterable"],
"types": [],
"strict": true,
"paths": {
"@test-utils": ["./src/test/utils/index"]
}
},
"include": ["./src/**/*.ts", "./src/**/*.tsx", ".storybook/*.ts", ".storybook/*.tsx"],
"references": [{ "path": "./tsconfig.node.json" }]
}