mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
21 lines
461 B
JSON
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"]
|
|
}
|
|
}
|