Add configuration files and update dependencies for Supabase functions

This commit is contained in:
2026-01-14 09:28:38 -06:00
parent 4fc445db61
commit 930556d862
7 changed files with 293 additions and 55 deletions
+36
View File
@@ -0,0 +1,36 @@
{
"configurations": [
{
"name": "Attach V8 Inspector",
"type": "node",
"address": "127.0.0.1",
"request": "attach",
// This is important: You must enter the path where your edge functions
// folders are located.
"localRoot": "${workspaceFolder}/supabase/functions/",
// CLI mounts all functions under /home/deno/functions
"remoteRoot": "/home/deno/functions/",
// As you can see from the two options above, VsCode tries to locate the script
// paths being used by the inspector session locally by matching local and remote
// paths.
//
// If a valid path cannot be found on either side, or the script contents of
// those paths do not match each other, the breakpoint setting may not proceed
// correctly.
//
// We set the two options below for this.
"sourceMaps": true,
"enableContentValidation": false,
// Properties below are optional.
"restart": true,
"timeout": 1000000,
// Inspector is accepting sessions on 8083 by default.
"port": 8083
}
]
}
+2
View File
@@ -0,0 +1,2 @@
{
}