Skip to content

Commit 9c7c2e9

Browse files
committed
Minor refactor
1 parent 88afe36 commit 9c7c2e9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+832
-1430
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ npm-debug.log*
55
yarn-debug.log*
66
yarn-error.log*
77
lerna-debug.log*
8+
/server/out
9+
/client/out
810

911
# Diagnostic reports (https://nodejs.org/api/report.html)
1012
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

.vscode/tasks.json

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"version": "0.2.0",
3+
"tasks": [
4+
{
5+
"type": "npm",
6+
"script": "compile",
7+
"group": "build",
8+
"presentation": {
9+
"panel": "dedicated",
10+
"reveal": "never"
11+
},
12+
"problemMatcher": ["$tsc"]
13+
},
14+
{
15+
"type": "npm",
16+
"script": "watch",
17+
"isBackground": true,
18+
"group": {
19+
"kind": "build",
20+
"isDefault": true
21+
},
22+
"presentation": {
23+
"panel": "dedicated",
24+
"reveal": "never"
25+
},
26+
"problemMatcher": ["$tsc-watch"]
27+
}
28+
]
29+
}

client/out/extension.js

Lines changed: 0 additions & 52 deletions
This file was deleted.

client/out/extension.js.map

Lines changed: 0 additions & 1 deletion
This file was deleted.

client/out/test/completion.test.js

Lines changed: 0 additions & 32 deletions
This file was deleted.

client/out/test/completion.test.js.map

Lines changed: 0 additions & 1 deletion
This file was deleted.

client/out/test/diagnostics.test.js

Lines changed: 0 additions & 36 deletions
This file was deleted.

client/out/test/diagnostics.test.js.map

Lines changed: 0 additions & 1 deletion
This file was deleted.

client/out/test/helper.js

Lines changed: 0 additions & 43 deletions
This file was deleted.

client/out/test/helper.js.map

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)