mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-23 20:18:00 +01:00
2417f40d37
* Switch jest unit tests to vitest * Cleanup vite config after debugging
26 lines
469 B
JSON
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"]
|
|
}
|
|
}
|