debian-image-builder-frontend/tsconfig.json
2024-11-15 13:03:01 +01:00

16 lines
471 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",
"sourceMap": true,
"allowJs": true,
"moduleResolution": "node",
"types": ["vitest/globals", "@testing-library/jest-dom"],
"strictNullChecks": true,
"allowSyntheticDefaultImports": true
}
}