Files
bun.sh/tsconfig.json
Colin McDonnell 31c17a1bb3 Better types (#7670)
* Rewrite bun-types to include @types/node

* Incorporate new commits

* Update bun.lockb

* [autofix.ci] apply automated fixes

* Update readme, add back webkit

* Updates

* BunJS -> Bun

* Switch init to @types/bun

* [autofix.ci] apply automated fixes

* Tweaks

* Revert docs changes

* Fix bugs

---------

Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
2023-12-18 13:27:48 -08:00

26 lines
517 B
JSON

{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
// "skipLibCheck": true,
"allowJs": true
},
"include": [".", "packages/bun-types/index.d.ts"],
"exclude": [
"src/test",
"src/js/out",
// "src/js/builtins",
"packages",
"bench",
"examples/*/*",
"test",
"src/deps",
"bun-webkit",
"src/bun.js/WebKit",
"src/api/demo",
"node_modules"
],
"files": ["src/js/builtins.d.ts"]
}