You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
800 B

  1. {
  2. "version": "0.2.0",
  3. "configurations": [
  4. {
  5. "type": "chrome",
  6. "request": "launch",
  7. "name": "client: chrome",
  8. "url": "http://localhost:3000",
  9. "webRoot": "${workspaceFolder}"
  10. },
  11. {
  12. "type": "node",
  13. "request": "launch",
  14. "name": "server: nuxt",
  15. "args": ["dev"],
  16. "osx": {
  17. "program": "${workspaceFolder}/node_modules/.bin/nuxt"
  18. },
  19. "linux": {
  20. "program": "${workspaceFolder}/node_modules/.bin/nuxt"
  21. },
  22. "windows": {
  23. "program": "${workspaceFolder}/node_modules/nuxt/bin/nuxt.js"
  24. }
  25. }
  26. ],
  27. "compounds": [
  28. {
  29. "name": "fullstack: nuxt",
  30. "configurations": ["server: nuxt", "client: chrome"]
  31. }
  32. ]
  33. }