philomena/assets/tsconfig.json
David Joseph Guzsik 2417f40d37
Switch jest unit tests to vitest (#243)
* Switch jest unit tests to vitest

* Cleanup vite config after debugging
2024-04-30 20:44:26 +02:00

26 lines
469 B
JSON

{
"compilerOptions": {
"baseUrl": "./js",
"target": "ES2020",
"useDefineForClassFields": true,
"esModuleInterop": true,
"allowJs": true,
"skipLibCheck": true,
"lib": [
"ES2020",
"DOM",
"DOM.Iterable"
],
"moduleResolution": "Node",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"strict": true,
"types": ["vitest/globals"]
}
}