Skip to content

Commit 5ca83ed

Browse files
committed
Visual Studio Code Development Integration Improvements
1 parent 4960650 commit 5ca83ed

File tree

3 files changed

+65
-3
lines changed

3 files changed

+65
-3
lines changed

.vscode/launch.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"version": "0.2.0",
3-
"configurations": [{
3+
"configurations": [
4+
{
45
"name": "Run Extension",
56
"type": "extensionHost",
67
"request": "launch",
@@ -13,4 +14,4 @@
1314
]
1415
}
1516
]
16-
}
17+
}

.vscode/settings.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,9 @@
44
},
55
"search.exclude": {
66
"out": true
7-
}
7+
},
8+
"task.problemMatchers.neverPrompt": {
9+
"npm": true
10+
},
11+
"typescript.tsdk": "./node_modules/typescript/lib"
812
}

.vscode/tasks.json

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
{
2+
"version": "2.0.0",
3+
"presentation": {
4+
"reveal": "always",
5+
"focus": false,
6+
"echo": true,
7+
"showReuseMessage": false,
8+
"panel": "shared"
9+
},
10+
"tasks": [
11+
{
12+
"type": "npm",
13+
"script": "compile",
14+
"label": "Compile"
15+
},
16+
{
17+
"type": "npm",
18+
"script": "compile-src",
19+
"label": "Compile (Back-End Only)"
20+
},
21+
{
22+
"type": "npm",
23+
"script": "compile-web",
24+
"label": "Compile (Front-End Only)"
25+
},
26+
{
27+
"type": "npm",
28+
"script": "compile-web-debug",
29+
"label": "Compile (Front-End Only) - Debug"
30+
},
31+
{
32+
"type": "npm",
33+
"script": "lint",
34+
"label": "Lint"
35+
},
36+
{
37+
"type": "npm",
38+
"script": "package",
39+
"label": "Package VSIX"
40+
},
41+
{
42+
"type": "npm",
43+
"script": "package-and-install",
44+
"label": "Package VSIX (Install on Completion)"
45+
},
46+
{
47+
"type": "npm",
48+
"script": "test",
49+
"label": "Run Unit Tests"
50+
},
51+
{
52+
"type": "npm",
53+
"script": "test-and-report-coverage",
54+
"label": "Run Unit Tests (Report Code Coverage)"
55+
}
56+
]
57+
}

0 commit comments

Comments
 (0)