diff --git a/.vscode/launch.json b/.vscode/launch.json index 12b9988b..4bb96b10 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -29,6 +29,15 @@ "program": "${workspaceFolder}/node_modules/gulp/bin/gulp.js", "args": ["website"], "cwd": "${workspaceFolder}" + }, + { + "type": "pwa-node", + "request": "launch", + "name": "webpack plugin test", + "skipFiles": ["/**"], + "program": "${workspaceFolder}/webpack-plugin/node_modules/.bin/webpack", + "args": ["--config", "test/webpack.config.js"], + "cwd": "${workspaceFolder}/webpack-plugin/" } ] } diff --git a/webpack-plugin/.vscode/launch.json b/webpack-plugin/.vscode/launch.json deleted file mode 100644 index ecdf9ce2..00000000 --- a/webpack-plugin/.vscode/launch.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - // Use IntelliSense to learn about possible attributes. - // Hover to view descriptions of existing attributes. - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 - "version": "0.2.0", - "configurations": [ - { - "type": "node", - "request": "launch", - "cwd": "${workspaceFolder}/test/", - "name": "Launch Program", - "program": "${workspaceFolder}/node_modules/.bin/webpack", - "args": ["--config", "webpack.config.js"] - } - ] -}