Files
bun.sh/tsconfig.base.json
Colin McDonnell df9461ecc5 Update tsconfigs
2023-10-03 23:16:55 -07:00

20 lines
437 B
JSON

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