File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- // A launch configuration that compiles the extension and then opens it inside a new window
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
51{
62 "version" : " 0.2.0" ,
73 "configurations" : [
128 "runtimeExecutable" : " ${execPath}" ,
139 "args" : [" --extensionDevelopmentPath=${workspaceFolder}" ],
1410 "outFiles" : [" ${workspaceFolder}/out/**/*.js" ],
15- "preLaunchTask" : " npm: compile "
11+ "preLaunchTask" : " ${defaultBuildTask} "
1612 }
1713 ]
1814}
Original file line number Diff line number Diff line change 1- // See https://go.microsoft.com/fwlink/?LinkId=733558
2- // for the documentation about the tasks.json format
31{
42 "version" : " 2.0.0" ,
53 "tasks" : [
64 {
5+ "label" : " Build" ,
76 "type" : " npm" ,
8- "script" : " watch" ,
9- "problemMatcher" : " $tsc-watch" ,
10- "isBackground" : true ,
11- "presentation" : {
12- "reveal" : " never"
13- },
7+ "script" : " build" ,
148 "group" : {
159 "kind" : " build" ,
1610 "isDefault" : true
11+ },
12+ "presentation" : {
13+ "reveal" : " silent"
1714 }
1815 }
1916 ]
Original file line number Diff line number Diff line change 8181 "contributes" : {},
8282 "scripts" : {
8383 "clean" : " rm -rf ./out && rm -rf parsers" ,
84- "watch" : " tsc -watch -p ." ,
8584 "vscode:prepublish" : " npm run build" ,
8685 "build" : " tsc -p ./ && npm run copy-assets" ,
8786 "copy-assets" : " sh copy-assets.sh" ,
You can’t perform that action at this time.
0 commit comments