24 lines
702 B
JSON
24 lines
702 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES2022",
|
||
|
|
"useDefineForClassFields": true,
|
||
|
|
"lib": ["DOM", "DOM.Iterable", "ES2022"],
|
||
|
|
"allowJs": false,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"allowSyntheticDefaultImports": true,
|
||
|
|
"strict": true,
|
||
|
|
"noUnusedLocals": true,
|
||
|
|
"noUnusedParameters": true,
|
||
|
|
"noFallthroughCasesInSwitch": true,
|
||
|
|
"module": "ESNext",
|
||
|
|
"moduleResolution": "Bundler",
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
"isolatedModules": true,
|
||
|
|
"verbatimModuleSyntax": true,
|
||
|
|
"jsx": "react-jsx",
|
||
|
|
"types": ["node", "vite/client", "vitest/globals"]
|
||
|
|
},
|
||
|
|
"include": ["src", "tests", "vite.config.ts", "vitest.config.ts", "playwright.config.ts"]
|
||
|
|
}
|