debian-image-builder-frontend/tsconfig.json
regexowl da16a42128 Migrate from Jest to Vitest
This migrates our tests from using the Jest testing framework to Vitest.
2024-07-16 16:55:31 +02:00

15 lines
448 B
JSON

{
"compilerOptions": {
"outDir": "./dist/",
"noImplicitAny": true,
"module": "esnext",
"target": "es5",
"downlevelIteration": true, // Needed to allow iteration over some objects like Map() while target is es5
"jsx": "react-jsx",
"allowJs": true,
"moduleResolution": "node",
"types": ["vitest/globals", "@testing-library/jest-dom"],
"strictNullChecks": true,
"allowSyntheticDefaultImports": true
}
}