debian-image-builder-frontend/tsconfig.json
2025-08-18 16:21:10 +02:00

32 lines
838 B
JSON

{
"compilerOptions": {
"outDir": "./dist/",
"module": "esnext",
"target": "es2021",
"jsx": "react-jsx",
"sourceMap": true,
"allowJs": true,
"moduleResolution": "node",
"types": [
"vitest/globals",
"@testing-library/jest-dom"
],
"strict": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"incremental": true,
"exactOptionalPropertyTypes": true,
"allowSyntheticDefaultImports": true,
"paths": {
"*": [
// Needed so we can resolve `cockpit` & `cockpit/fsinfo`
// types. We have stubbed those functions out for the
// as this is the tsconfig file for the service.
"./src/test/mocks/*"
]
}
},
"include": ["./src", "./playwright"]
}