mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 10:28:47 +00:00
Co-authored-by: Don Isaac <don@bun.sh> Co-authored-by: DonIsaac <DonIsaac@users.noreply.github.com>
13 lines
289 B
JSON
13 lines
289 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"esModuleInterop": true,
|
|
// Path remapping
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"internal/*": ["./internal/*"] //deprecated
|
|
}
|
|
},
|
|
"include": ["**/*.ts", "**/*.tsx", "./builtins.d.ts", "./private.d.ts"]
|
|
}
|