From 7516cef93e65e63c98eeef84cb27acfccfb86e9a Mon Sep 17 00:00:00 2001 From: "pengfei.zhou" Date: Tue, 24 Aug 2021 15:42:15 +0800 Subject: [PATCH] add template file --- .../assets-lib/example/.vscode/launch.json | 18 ++++++++++++ .../assets-lib/example/.vscode/tasks.json | 28 +++++++++++++++++++ 2 files changed, 46 insertions(+) create mode 100644 doric-cli/assets-lib/example/.vscode/launch.json create mode 100644 doric-cli/assets-lib/example/.vscode/tasks.json diff --git a/doric-cli/assets-lib/example/.vscode/launch.json b/doric-cli/assets-lib/example/.vscode/launch.json new file mode 100644 index 00000000..a5ee63c6 --- /dev/null +++ b/doric-cli/assets-lib/example/.vscode/launch.json @@ -0,0 +1,18 @@ +{ + // 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", + "name": "Doric Debugger", + "program": "${workspaceFolder}/${relativeFile}", + "sourceMaps": true, + "outFiles": [ + "${workspaceFolder}/bundle/**/*.js" + ] + } + ] +} \ No newline at end of file diff --git a/doric-cli/assets-lib/example/.vscode/tasks.json b/doric-cli/assets-lib/example/.vscode/tasks.json new file mode 100644 index 00000000..da0e1c93 --- /dev/null +++ b/doric-cli/assets-lib/example/.vscode/tasks.json @@ -0,0 +1,28 @@ +{ + // See https://go.microsoft.com/fwlink/?LinkId=733558 + // for the documentation about the tasks.json format + "version": "2.0.0", + "tasks": [ + { + "label": "Doric Build", + "type": "shell", + "command": "npm run build", + "group": "build", + "problemMatcher": [] + }, + { + "label": "Doric Clean", + "type": "shell", + "command": "npm run clean", + "group": "build", + "problemMatcher": [] + }, + { + "label": "Doric Dev", + "type": "shell", + "command": "npm run dev", + "group": "build", + "problemMatcher": [] + } + ] +} \ No newline at end of file