[vscode-spring-cli] Switch the build to webpack

This commit is contained in:
aboyko
2024-05-17 19:13:59 -04:00
parent cdc292a22e
commit 6f76f4e288
8 changed files with 3765 additions and 120 deletions

View File

@@ -6,17 +6,17 @@
"version": "0.2.0",
"configurations": [
{
"name": "Extension",
"name": "Spring CLI Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"preLaunchTask": "npm: watch",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}"
],
"outFiles": [
"${workspaceFolder}/out/**/*.js"
],
"preLaunchTask": "npm: watch"
"${workspaceFolder}/dist/**/*.js"
]
}
]
}

View File

@@ -6,7 +6,22 @@
{
"type": "npm",
"script": "watch",
"problemMatcher": "$tsc-watch",
"problemMatcher": {
"owner": "typescript",
"pattern":[
{
"regexp": "\\[tsl\\] ERROR",
"file": 1,
"location": 2,
"message": 3
}
],
"background": {
"activeOnStart": true,
"beginsPattern": "\\w+",
"endsPattern": "webpack .* compiled"
}
},
"isBackground": true,
"presentation": {
"reveal": "never"