Files
bun.sh/src/js/tsconfig.json
Don Isaac 0372ca5c0a test(node): get test-assert.js working (#15698)
Co-authored-by: Don Isaac <don@bun.sh>
Co-authored-by: DonIsaac <DonIsaac@users.noreply.github.com>
2025-01-10 00:45:43 +00:00

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