MiniSearch / tsconfig.json
github-actions[bot]
Sync from https://github.com/felladrin/MiniSearch
64cac48
{
"compilerOptions": {
"target": "ESNext",
"useDefineForClassFields": true,
"module": "ESNext",
"skipLibCheck": true,
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"baseUrl": "./",
"paths": {
"@/*": ["client/*"]
},
"types": ["vitest/globals", "@testing-library/jest-dom"]
},
"include": ["client", "shared", "test"]
}