1
0
Fork 0
docsearch/tsconfig.json
Dylan Tientcheu 9a908b89b0
fix: add docsearch 4 to website (#2767)
Co-authored-by: Paul Jankowski <8BitTitan@gmail.com>
2025-09-22 10:52:07 +02:00

25 lines
552 B
JSON

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