summaryrefslogtreecommitdiffstats
path: root/.vscode
diff options
context:
space:
mode:
authorChristoph Schlosser <christoph@linux.com>2019-10-08 22:49:29 +0200
committerChristoph Schlosser <christoph@linux.com>2019-10-08 22:49:29 +0200
commit7a3c0c308db835101e45942e444d1f65e85b1f60 (patch)
tree816945c3943818667994d53378f39c2e81720e81 /.vscode
parentc5e85c18f4ee818253d3f761a583da2002365075 (diff)
downloaddoxdocgen-make-vsix-smaller.tar.gz
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/launch.json6
-rw-r--r--.vscode/tasks.json8
2 files changed, 11 insertions, 3 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
index 3333439..0b03ab4 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -10,8 +10,8 @@
"args": ["--extensionDevelopmentPath=${workspaceRoot}" ],
"stopOnEntry": false,
"sourceMaps": true,
- "outFiles": [ "${workspaceRoot}/out/**/*.js" ],
- "preLaunchTask": "npm: watch"
+ "outFiles": [ "${workspaceRoot}/dist/extension.js" ],
+ "preLaunchTask": "npm: webpack"
},
{
"name": "Launch Tests",
@@ -22,7 +22,7 @@
"stopOnEntry": false,
"sourceMaps": true,
"outFiles": [ "${workspaceRoot}/out/test/**/*.js" ],
- "preLaunchTask": "npm: watch"
+ "preLaunchTask": "npm: compile"
}
]
}
diff --git a/.vscode/tasks.json b/.vscode/tasks.json
index 604e38f..33db18d 100644
--- a/.vscode/tasks.json
+++ b/.vscode/tasks.json
@@ -15,6 +15,14 @@
"kind": "build",
"isDefault": true
}
+ },
+ {
+ "type": "npm",
+ "script": "webpack-dev",
+ "problemMatcher": [
+ "$tsc-watch"
+ ],
+ "isBackground": true
}
]
} \ No newline at end of file