Files
salvato.newfreeplanet/.vscode/launch.json
2024-02-06 20:13:06 +01:00

49 lines
1.2 KiB
JSON

{
// Usare IntelliSense per informazioni sui possibili attributi.
// Al passaggio del mouse vengono visualizzate le descrizioni degli attributi esistenti.
// Per altre informazioni, visitare: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"command": "npm run pwa",
"name": "PWA",
"request": "launch",
"type": "node-terminal",
"env": {
"NODE_ENV": "development"
}
},
{
"command": "npm run spa",
"name": "SPA",
"request": "launch",
"type": "node-terminal",
"sourceMaps": false,
},
{
"command": "npm run spa",
"name": "SPA DEBUG",
"request": "launch",
"type": "node-terminal",
"sourceMaps": true,
},
{
"command": "npm run dev",
"name": "DEV",
"request": "launch",
"type": "node-terminal"
},
{
"type": "chrome",
"request": "launch",
"name": "vuejs: Launch Chrome DEBUG",
"url": "http://localhost:8088",
"breakOnLoad": true,
"webRoot": "${workspaceFolder}/src",
"sourceMapPathOverrides": {
"webpack:///src/*": "${webRoot}/*"
}
}
]
}