From 41741f1882c019edac15b1a05f51b72e5af069f7 Mon Sep 17 00:00:00 2001 From: Zero~Informatique Date: Fri, 7 Feb 2020 07:55:09 +0100 Subject: viewer: project optimization for faster init, and a better Visual Studio Code environnement --- viewer/.vscode/launch.json | 19 +++++++++++++++++++ viewer/.vscode/tasks.json | 22 ++++++++++++++++++++++ 2 files changed, 41 insertions(+) create mode 100644 viewer/.vscode/launch.json create mode 100644 viewer/.vscode/tasks.json (limited to 'viewer/.vscode') 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 @@ +{ + // 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": "chrome", + "request": "launch", + "name": "vuejs: chrome", + "url": "http://127.0.0.1:8085", + "webRoot": "${workspaceFolder}/src", + "breakOnLoad": true, + "sourceMapPathOverrides": { + "webpack:///./src/*": "${webRoot}/*" + } + } + ] +} \ No newline at end of file diff --git a/viewer/.vscode/tasks.json b/viewer/.vscode/tasks.json new file mode 100644 index 0000000..3c02098 --- /dev/null +++ b/viewer/.vscode/tasks.json @@ -0,0 +1,22 @@ +{ + // See https://go.microsoft.com/fwlink/?LinkId=733558 + // for the documentation about the tasks.json format + "version": "2.0.0", + "tasks": [ + { + "type": "npm", + "script": "build", + "group": { + "kind": "build", + "isDefault": true + } + }, + { + "type": "npm", + "script": "serve", + "problemMatcher": [ + "$tsc" + ] + } + ] +} \ No newline at end of file -- cgit v1.2.3