mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
* Update response.zig * Comment this out for now * Support unix domain socket in Bun.serve() * Add test * add types * Update JSFetchHeaders.cpp * comment this test out * tls unix web socket serve options --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> Co-authored-by: dave caruso <me@paperdave.net>
24 lines
464 B
JSON
24 lines
464 B
JSON
{
|
|
"extends": "./tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"experimentalDecorators": true,
|
|
// "skipLibCheck": true,
|
|
"allowJs": true
|
|
},
|
|
"include": [".", "packages/bun-types/index.d.ts"],
|
|
"exclude": [
|
|
"src/test",
|
|
// "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"]
|
|
}
|