1
0
Fork 0
docsearch/tsconfig.json
2025-12-18 12:50:16 -05: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"
]
}