diff options
author | Zero~Informatique | 2020-02-07 07:55:09 +0100 |
---|---|---|
committer | Zero~Informatique | 2020-02-07 07:57:19 +0100 |
commit | 41741f1882c019edac15b1a05f51b72e5af069f7 (patch) | |
tree | 6fa3d34500aa85e877b7d820792ce627fb494429 /viewer/.vscode/launch.json | |
parent | bb186990000dd133ecfe6741472b03af92eea233 (diff) | |
download | ldgallery-41741f1882c019edac15b1a05f51b72e5af069f7.tar.gz |
viewer: project optimization for faster init, and a better Visual Studio Code environnement
Diffstat (limited to 'viewer/.vscode/launch.json')
-rw-r--r-- | viewer/.vscode/launch.json | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/viewer/.vscode/launch.json b/viewer/.vscode/launch.json new file mode 100644 index 0000000..d7995e5 --- /dev/null +++ b/viewer/.vscode/launch.json | |||
@@ -0,0 +1,19 @@ | |||
1 | { | ||
2 | // Use IntelliSense to learn about possible attributes. | ||
3 | // Hover to view descriptions of existing attributes. | ||
4 | // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
5 | "version": "0.2.0", | ||
6 | "configurations": [ | ||
7 | { | ||
8 | "type": "chrome", | ||
9 | "request": "launch", | ||
10 | "name": "vuejs: chrome", | ||
11 | "url": "http://127.0.0.1:8085", | ||
12 | "webRoot": "${workspaceFolder}/src", | ||
13 | "breakOnLoad": true, | ||
14 | "sourceMapPathOverrides": { | ||
15 | "webpack:///./src/*": "${webRoot}/*" | ||
16 | } | ||
17 | } | ||
18 | ] | ||
19 | } \ No newline at end of file | ||