1
0
Fork 0
docsearch/tsconfig.json
Pierre Millot d360855f16
fix: use vite instead of parcel in the examples (#2329)
Parcel would delete some random file like identity because it though it was not used, vite is smarter.
Also remove unused imports
2024-10-31 16:44:34 +01:00

26 lines
580 B
JSON

{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"jsx": "react",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"noFallthroughCasesInSwitch": true,
"noImplicitAny": false,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
"target": "ESNEXT"
},
"exclude": [
"**/__fixtures__/**/*",
"**/__mocks__/**/*",
"**/__tests__/**/*",
"**/dist",
"**/node_modules",
"cypress",
"examples"
]
}