debug ts code

This commit is contained in:
pengfei.zhou
2019-10-22 18:01:10 +08:00
parent 2bf4874467
commit 44d7261c2c
14 changed files with 2733 additions and 12 deletions

28
demo/.vscode/tasks.json vendored Normal file
View File

@@ -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": "doric build",
"group": "build",
"problemMatcher": []
},
{
"label": "Doric Clean",
"type": "shell",
"command": "doric clean",
"group": "build",
"problemMatcher": []
},
{
"label": "Doric Dev",
"type": "shell",
"command": "doric dev",
"group": "build",
"problemMatcher": []
}
]
}