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