Files
bun.sh/src/js/tsconfig.json
dave caruso 0a5d2a8195 feat(node:fs): add cp/cpSync/promises.cp + async copyFile (#4340)
* 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
2023-08-30 18:30:06 -07:00

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"
]
}