svelte-helper

This commit is contained in:
2025-06-06 15:04:57 -07:00
parent 20a7c2ee08
commit 0d2490199e
42 changed files with 14564 additions and 0 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"
]
}
]
}