Skip to content
This repository was archived by the owner on Sep 4, 2020. It is now read-only.

Commit a994eb9

Browse files
committed
release v1.2.2
1 parent 34b8c96 commit a994eb9

File tree

3 files changed

+36
-324
lines changed

3 files changed

+36
-324
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "typescript-deno-plugin",
3-
"version": "1.2.1",
3+
"version": "1.2.2",
44
"description": "Deno language service plugin for TypeScript",
55
"main": "out/index.js",
66
"scripts": {
@@ -20,7 +20,7 @@
2020
},
2121
"dependencies": {
2222
"mock-require": "^3.0.3",
23-
"request": "^2.88.0"
23+
"vscode-languageserver": "^5.2.1"
2424
},
2525
"devDependencies": {
2626
"@types/mock-require": "^2.0.0",

src/index.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,11 @@ export = function init({ typescript }: { typescript: typeof ts_module }) {
8888
};
8989

9090
return info.languageService;
91-
}
91+
},
92+
93+
onConfigurationChanged(config: any) {
94+
logger.info(`onConfigurationChanged: ${JSON.stringify(config)}`)
95+
},
9296
};
9397
};
9498

0 commit comments

Comments
 (0)