dotino-veloce/.vscode/launch.json

40 lines
1,002 B
JSON
Raw Normal View History

2024-10-21 01:24:07 +00:00
{
// 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": [
{
"request": "launch",
"name": "Reinitialize database",
2024-10-21 01:24:07 +00:00
"type": "node",
"runtimeExecutable": "/usr/bin/deno",
"runtimeArgs": [
"run",
"--no-prompt",
2024-10-21 02:00:59 +00:00
"--allow-all",
"--inspect-wait"
2024-10-21 01:24:07 +00:00
],
"program": "${workspaceFolder}/src/entry/dbInit.ts",
"cwd": "${workspaceFolder}",
"envFile": "${workspaceFolder}/local.env",
2024-10-21 01:24:07 +00:00
"attachSimplePort": 9229
},
{
"request": "launch",
"name": "Dev Server",
2024-10-21 01:24:07 +00:00
"type": "node",
"runtimeExecutable": "/usr/bin/deno",
"runtimeArgs": [
"run",
"--no-prompt",
2024-10-21 02:00:59 +00:00
"--allow-all",
"--inspect-wait"
2024-10-21 01:24:07 +00:00
],
"program": "${workspaceFolder}/src/entry/server.ts",
"cwd": "${workspaceFolder}",
"envFile": "${workspaceFolder}/local.env",
2024-10-21 01:24:07 +00:00
"attachSimplePort": 9229
}
2024-10-21 01:24:07 +00:00
]
}