Files
matrix-authentication-service/frontend/tsconfig.json
T
Quentin Gliech b82db7a3de frontend: use in-memory history in test environments
This removes the flakiness of location-based tests
2023-10-23 14:52:27 +02:00

35 lines
708 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"useDefineForClassFields": true,
"lib": [
"DOM",
"DOM.Iterable",
"ESNext"
],
"types": ["vite/client", "vitest/importMeta"],
"allowJs": false,
"skipLibCheck": true,
"esModuleInterop": false,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "ESNext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx"
},
"include": [
"src",
"locales",
".storybook/preview.tsx"
],
"references": [
{
"path": "./tsconfig.node.json"
}
]
}