mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
26 lines
511 B
JSON
26 lines
511 B
JSON
{
|
|
"extends": "./tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
// "skipLibCheck": true,
|
|
"allowJs": true
|
|
},
|
|
"include": [".", "packages/bun-types/index.d.ts"],
|
|
"exclude": [
|
|
"src/test",
|
|
"src/js/out",
|
|
// "src/js/builtins",
|
|
"packages",
|
|
"bench",
|
|
"examples/*/*",
|
|
"test",
|
|
"vendor",
|
|
"bun-webkit",
|
|
"vendor/WebKit",
|
|
"src/api/demo",
|
|
"node_modules"
|
|
],
|
|
"files": ["src/js/builtins.d.ts"]
|
|
}
|