Files
bun.sh/tsconfig.base.json

24 lines
415 B
JSON

{
"compilerOptions": {
"lib": [
"ESNext"
],
"module": "esnext",
"target": "esnext",
"moduleResolution": "nodenext",
"strict": true,
"noImplicitAny": false,
"allowJs": true,
"downlevelIteration": true,
"esModuleInterop": true,
"skipLibCheck": true,
"jsx": "react-jsx",
"types": [
"bun-types"
],
"typeRoots": [
"./packages"
],
}
}