mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 18:38:55 +00:00
* WIP * WIP * WIP * WIP * Improve typechecking in type files * Fix typechecking * Update * Update submodule * CI for typechecking * Add ci * Update commands * Format after build * Dont use bunx * Rename job * Use nodemodules prettier * Update workflow * Use symlink * Debug * Debug * Clean up and rename jobs
28 lines
584 B
JSON
28 lines
584 B
JSON
{
|
|
"extends": "./tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"experimentalDecorators": true,
|
|
"noEmit": true,
|
|
// "skipLibCheck": true,
|
|
"allowJs": true
|
|
},
|
|
"include": [
|
|
".",
|
|
"packages/bun-types/index.d.ts"
|
|
],
|
|
"exclude": [
|
|
"src/test",
|
|
"packages",
|
|
"bench",
|
|
"examples/*/*",
|
|
"test",
|
|
"src/deps",
|
|
"bun-webkit",
|
|
// JavaScriptCore builtins use a non-standard "@" symbol to indicate a private identifier which no other tool supports
|
|
"src/bun.js/builtins",
|
|
"src/bun.js/WebKit",
|
|
"src/api/demo",
|
|
"node_modules",
|
|
]
|
|
}
|