Skip to content

Commit 90106b5

Browse files
committed
Fix build problems
1 parent 2a82d2a commit 90106b5

4 files changed

Lines changed: 14 additions & 4 deletions

File tree

client/package-lock.json

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/package.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,16 @@
1212
"engines": {
1313
"vscode": "^1.37.0"
1414
},
15+
"scripts": {
16+
"compile": "tsc -p ./"
17+
},
1518
"dependencies": {
1619
"vscode-languageclient": "^5.2.1"
1720
},
1821
"devDependencies": {
1922
"@types/request": "^2.48.3",
2023
"@types/vscode": "^1.39.0",
21-
"vscode-test": "^1.2.0"
24+
"vscode-test": "^1.2.0",
25+
"typescript": "3.6.4"
2226
}
2327
}

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,8 +128,8 @@
128128
}
129129
},
130130
"scripts": {
131-
"vscode:prepublish": "cd client && cd .. && npm run compile",
132-
"compile": "npm run copy-wasm && tsc -b",
131+
"vscode:prepublish": "npm run compile",
132+
"compile": "cd client && npm run compile && cd ../server && npm run compile && cd .. && tsc -b",
133133
"watch": "npm run copy-wasm && tsc -b -w",
134134
"copy-wasm": "cd server && npm run copy-wasm",
135135
"postinstall": "cd client && npm install && cd ../server && npm install && cd ..",

server

0 commit comments

Comments
 (0)