1
0
Fork 0
docsearch/tsconfig.json
Paul Jankowski fb31580edc
fix: Ensure stage level and watch level scripts use bun runtime (#2915)
* fix: Ensure stage level and watch level scripts use bun runtime

* chore: move to node@24 update imports

* fix: lint
2026-07-13 13:40:31 -04:00

26 lines
588 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
},
"exclude": [
"**/__fixtures__/**/*",
"**/__mocks__/**/*",
"**/dist",
"**/node_modules",
"e2e",
"examples"
]
}