launch.json 417 B

1234567891011121314151617
  1. {
  2. "version": "0.2.0",
  3. "configurations": [
  4. {
  5. "name": "运行扩展",
  6. "type": "extensionHost",
  7. "request": "launch",
  8. "args": [
  9. "--extensionDevelopmentPath=${workspaceFolder}"
  10. ],
  11. "outFiles": [
  12. "${workspaceFolder}/out/**/*.js"
  13. ],
  14. "preLaunchTask": "npm: watch"
  15. }
  16. ]
  17. }