Files
bun.sh/tsconfig.base.json
Colin McDonnell b70210a005 Use noEmit
2023-08-24 19:51:14 -07:00

21 lines
461 B
JSON

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