34 lines
862 B
JSON
34 lines
862 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"useDefineForClassFields": true,
|
|
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
|
"module": "ESNext",
|
|
"skipLibCheck": true,
|
|
|
|
/* Bundler mode */
|
|
"moduleResolution": "node",
|
|
"allowImportingTsExtensions": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
|
|
/* Linting */
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
"baseUrl": "./src",
|
|
"esModuleInterop": true,
|
|
"noImplicitAny": false,
|
|
"types": ["vitest/globals"],
|
|
"paths": {
|
|
"react": ["../node_modules/@types/react"]
|
|
}
|
|
},
|
|
"include": ["src", "test/setup.ts", "types/*.d.ts"],
|
|
"references": [{ "path": "./tsconfig.node.json" }]
|
|
}
|