launch.json 811 B

1234567891011121314151617181920212223242526272829
  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 Extension",
  10. "type": "extensionHost",
  11. "request": "launch",
  12. "runtimeExecutable": "${execPath}",
  13. "args": [
  14. "--extensionDevelopmentPath=${workspaceFolder}",
  15. ],
  16. "sourceMaps": true,
  17. "outFiles": ["${workspaceFolder}/dist/**/*.js"],
  18. "preLaunchTask": "compile",
  19. "env": {
  20. "NODE_ENV": "development",
  21. "VSCODE_DEBUG_MODE": "true"
  22. },
  23. "resolveSourceMapLocations": [
  24. "${workspaceFolder}/**",
  25. "!**/node_modules/**"
  26. ]
  27. },
  28. ]
  29. }