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.

launch.json 915B

123456789101112131415161718192021222324252627282930
  1. // A launch configuration that compiles the extension and then opens it inside a new window
  2. // Use IntelliSense to learn about possible attributes.
  3. // Hover to view descriptions of existing attributes.
  4. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
  5. {
  6. "version": "0.2.0",
  7. "configurations": [
  8. {
  9. "name": "Run Web Extension ",
  10. "type": "pwa-extensionHost",
  11. "request": "launch",
  12. "program": "${workspaceFolder}/src/extension.ts",
  13. "cwd": "${workspaceFolder}",
  14. "args": [
  15. "--disable-extensions",
  16. "--extensionDevelopmentPath=${workspaceFolder}",
  17. "${workspaceFolder}/src/extension.ts"
  18. ],
  19. "outFiles": [
  20. "${workspaceFolder}/dist/web/**/*.js",
  21. "!**/node_modules/**"
  22. ],
  23. "skipFiles": [
  24. "<node_internals>/**",
  25. "**/node_modules/**"
  26. ],
  27. "sourceMaps": true,
  28. }
  29. ]
  30. }