You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
See [IDE configuration](https://jenkins.io/doc/developer/development-environment/ide-configuration/)
51
+
See [IDE configuration](https://jenkins.io/doc/developer/development-environment/ide-configuration/).
52
+
53
+
### Debugging in Visual Studio Code
54
+
55
+
This repository comes preconfigured for debugging in [Visual Studio Code](https://code.visualstudio.com/). Beyond Java and Maven, you will need:
56
+
57
+
- The [recommended extensions](./.vscode/extensions.json) for Visual Studio Code
58
+
- Node.js and NPM installed and in `PATH` (check recommended versions in [`pom.xml`](./pom.xml) > `properties`)
59
+
- Frontend dependencies installed with `npm install`
60
+
61
+
Then, in the [_Debug_ view](https://code.visualstudio.com/docs/debugtest/debugging), you can select between:
62
+
63
+
-_Debug Frontend_ to debug the frontend code in a browser
64
+
-_Debug Java_ to debug the Java code
65
+
-_Debug All_ to debug both at the same time
66
+
67
+
When launching one of these, Visual Studio Code will automatically start the required tasks, such as `npm run build:dev` and `mvn hpi:run -Dskip.npm -P quick-build`.
0 commit comments