mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 10:28:47 +00:00
* Improve support for \`debug-adapter-protocol\` * More improvements, fix formatting in debug console * Fix attaching * Prepare for source maps * Start of source map support, breakpoints work * Source map support * add some package.jsons * wip * Update package.json * More fixes * Make source maps safer if exception occurs * Check bun version if it fails * Fix console.log formatting * Fix source maps partly * More source map fixes * Prepare for extension * watch mode with dap * Improve preview code * Prepare for extension 2 --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
15 lines
376 B
JSON
15 lines
376 B
JSON
{
|
|
"compilerOptions": {
|
|
"moduleResolution": "node",
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"declaration": true,
|
|
"esModuleInterop": true,
|
|
"isolatedModules": false,
|
|
"skipLibCheck": true,
|
|
"types": ["bun-types"]
|
|
},
|
|
"include": ["src", "test", "types", "../../bun-devtools", "../../bun-debug-adapter-protocol"],
|
|
"exclude": ["node_modules"]
|
|
}
|