1
0
Fork 0
docsearch/tsconfig.json

27 lines
610 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",
"allowImportingTsExtensions": true,
"types": ["bun"]
},
"exclude": [
"**/__fixtures__/**/*",
"**/__mocks__/**/*",
"**/dist",
"**/node_modules",
"e2e",
"examples"
]
}