feat: new binding generator (#15638)

This commit is contained in:
dave caruso
2024-12-10 12:43:17 -08:00
committed by GitHub
parent 38325aa41c
commit b39632c921
83 changed files with 3985 additions and 583 deletions

View File

@@ -1,26 +1,18 @@
{
"extends": "./tsconfig.base.json",
"files": [],
"include": [],
"compilerOptions": {
"noEmit": true,
"skipLibCheck": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
// "skipLibCheck": true,
"allowJs": true
"emitDecoratorMetadata": true
},
"include": [".", "packages/bun-types/index.d.ts"],
"exclude": [
"src/test",
"src/js/out",
// "src/js/builtins",
"packages",
"bench",
"examples/*/*",
"build",
".zig-cache",
"test",
"vendor",
"bun-webkit",
"src/api/demo",
"node_modules"
],
"files": ["src/js/builtins.d.ts"]
"references": [
//
{ "path": "./src" },
{ "path": "./src/bake" },
{ "path": "./src/js" },
{ "path": "./test" },
{ "path": "./packages/bun-types" }
]
}