svelte-helper

This commit is contained in:
2025-06-06 14:02:41 -07:00
parent d87502a95e
commit a4f696bb9a
66 changed files with 16389 additions and 9297 deletions

35
svelte-helper/.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,35 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch server",
"request": "launch",
"runtimeArgs": [
"run",
"dev"
],
"runtimeExecutable": "bun",
"skipFiles": [
"<node_internals>/**"
],
"type": "node",
"console": "internalConsole"
},
{
"type": "msedge",
"request": "launch",
"name": "Launch Edge",
"url": "http://localhost:5173/",
"webRoot": "${workspaceFolder}"
}
],
"compounds": [
{
"name": "Both",
"configurations": [
"Launch server",
"Launch Edge"
]
}
]
}