We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53f9d4e commit 3a4837cCopy full SHA for 3a4837c
src/extension.ts
@@ -8,13 +8,14 @@ export const activate = async () => {
8
9
await tsExtension.activate()
10
11
- // Get the API from the TS extension
12
if (!tsExtension.exports || !tsExtension.exports.getAPI) return
13
+ // Get the API from the TS extension
14
const api = tsExtension.exports.getAPI(0)
15
if (!api) return
16
17
const syncConfig = () => {
18
+ console.log('sending configure request for typescript-essential-plugins')
19
const config = vscode.workspace.getConfiguration().get(process.env.IDS_PREFIX!)
20
api.configurePlugin('typescript-essential-plugins', config)
21
}
0 commit comments