Skip to content
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Debug Vite App (Chrome)",
"type": "chrome",
"request": "launch",
"url": "http://localhost:5173", // Change if your Vite/port is different (e.g., for playground script)
"webRoot": "${workspaceFolder}/src", // <-- This line goes here (or "${workspaceFolder}" if your entry files are at root)
"sourceMaps": true,
"skipFiles": [
"<node_internals>/**"
],
"sourceMapPathOverrides": { // <-- This entire block goes here
"vite://*": "${webRoot}/*"
}
},
{
"name": "Debug Vite App (Edge)",
"type": "msedge",
"request": "launch",
"url": "http://localhost:5173",
"webRoot": "${workspaceFolder}/src",
"sourceMaps": true,
"skipFiles": [
"<node_internals>/**"
],
"sourceMapPathOverrides": {
"vite://*": "${webRoot}/*"
}
}
]
}
4 changes: 4 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"editor.formatOnSave": false,
"prettier.enable": false
}
Comment thread
BobPritchett marked this conversation as resolved.
Outdated
37 changes: 20 additions & 17 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"peggy": "^2.0.1",
"punycode": "^2.1.1",
"typescript": "^5.8.3",
"vite": "^7.0.6"
"vite": "^7.2.6"
},
"name": "dropflow",
"version": "0.6.1",
Expand Down
Loading
Loading