fix(bun-plugin-svelte): fix svelte module imports (#18042)

This commit is contained in:
Don Isaac
2025-03-11 12:01:15 -07:00
committed by GitHub
parent 5123561889
commit 9a5afe371a
10 changed files with 232 additions and 33 deletions

11
.vscode/launch.json generated vendored
View File

@@ -1131,6 +1131,17 @@
// Don't pause when the GC runs while the debugger is open.
"postRunCommands": ["command source '${workspaceFolder}/misctools/lldb/lldb_commands'"],
},
{
"type": "bun",
"name": "[JS] bun test [file]",
"runtime": "${workspaceFolder}/build/debug/bun-debug",
"runtimeArgs": ["test", "${file}"],
"cwd": "${workspaceFolder}",
"env": {
"BUN_DEBUG_QUIET_LOGS": "1",
"BUN_GARBAGE_COLLECTOR_LEVEL": "2",
},
},
{
"type": "midas-rr",
"request": "attach",