* fix: Ensure stage level and watch level scripts use bun runtime * chore: move to node@24 update imports * fix: lint
26 lines
588 B
JSON
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"
|
|
]
|
|
}
|