Files
bun.sh/tsconfig.base.json
2023-08-24 19:54:03 -07:00

20 lines
438 B
JSON

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