Files
bun.sh/tsconfig.json
Colin McDonnell e7f9ce47f4 Add types for node:console and node:perf_hooks (#1982)
* Add types for node:console and node:perf_hooks

* Add types for util/types

---------

Co-authored-by: Colin McDonnell <colinmcd@alum.mit.edu>
2023-02-06 12:57:19 -08:00

28 lines
650 B
JSON

{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"experimentalDecorators": true,
"noEmit": true,
// "skipLibCheck": true,
"allowJs": true
},
"include": [
".",
"**/*.d.ts"
],
"exclude": [
"src/test",
"packages",
"bench",
"examples/react-fast-refresh-test",
"examples/macros",
"test/bun.js/solid-dom-fixtures",
"test/bun.js/bundled",
// JavaScriptCore builtins use a non-standard "@" symbol to indicate a private identifier which no other tool supports
"src/bun.js/builtins",
"src/api/demo",
"test/snapshots",
"test/snapshots-no-hmr",
"node_modules"
]
}