mirror of
https://github.com/oven-sh/bun
synced 2026-02-12 03:48:56 +00:00
* half working disaster code * this * async copyFile * . * its failing symlink tests * asdfg * asdf * hmm * okay i think ti works * small edits * fix test on linux * i hate atomics / atomics hate me back <3 * add a message in the builtins bundler that 0.8 is needed. it breaks on older versions lol. * fixed * rebase
28 lines
545 B
JSON
28 lines
545 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"lib": ["ESNext"],
|
|
"module": "ESNext",
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"emitDeclarationOnly": false,
|
|
"paths": {
|
|
"$shared": ["./internal/shared.ts"], //deprecated
|
|
"internal/*": ["./internal/*"] //deprecated
|
|
}
|
|
},
|
|
"include": [
|
|
//
|
|
"node",
|
|
"bun",
|
|
"builtins",
|
|
"functions",
|
|
"internal",
|
|
"thirdparty",
|
|
"_codegen",
|
|
"builtins.d.ts",
|
|
"private.d.ts",
|
|
"../../packages/bun-types/index.d.ts"
|
|
]
|
|
}
|