aboutsummaryrefslogtreecommitdiff
path: root/editors/code/rollup.config.js
diff options
context:
space:
mode:
authorEmil Lauridsen <[email protected]>2020-01-15 10:47:56 +0000
committerEmil Lauridsen <[email protected]>2020-01-15 11:04:35 +0000
commit70cba0fe0fe3583deb19709a61768695b83d3ea9 (patch)
tree7ba01677ada676242f74151f716a2e0bcc47e1a2 /editors/code/rollup.config.js
parent876f92d547af5f39170350f3995647ec934f590b (diff)
Use types from vscode-langaugeclient
Diffstat (limited to 'editors/code/rollup.config.js')
-rw-r--r--editors/code/rollup.config.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/rollup.config.js b/editors/code/rollup.config.js
index 14fb9e085..de6a3b2b7 100644
--- a/editors/code/rollup.config.js
+++ b/editors/code/rollup.config.js
@@ -13,7 +13,7 @@ export default {
13 commonjs({ 13 commonjs({
14 namedExports: { 14 namedExports: {
15 // squelch missing import warnings 15 // squelch missing import warnings
16 'vscode-languageclient': ['CreateFile', 'RenameFile', 'ErrorCodes'] 16 'vscode-languageclient': ['CreateFile', 'RenameFile', 'ErrorCodes', 'WorkDoneProgress', 'WorkDoneProgressBegin', 'WorkDoneProgressReport', 'WorkDoneProgressEnd']
17 } 17 }
18 }) 18 })
19 ], 19 ],