From 6652ad92a7b7b2bc62ed06afd2fb5bfb60cbc693 Mon Sep 17 00:00:00 2001 From: Andrew Schwartzmeyer Date: Tue, 18 Jan 2022 14:13:42 -0800 Subject: [PATCH] Fix path to TypeScript SDK --- extension-dev.code-workspace | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/extension-dev.code-workspace b/extension-dev.code-workspace index 5c4ec06c20..744e1eadb1 100644 --- a/extension-dev.code-workspace +++ b/extension-dev.code-workspace @@ -34,15 +34,15 @@ "markdownlint.config": { "MD024": false // no-duplicate-header }, - // Lock the TypeScript SDK path to the version we use - "typescript.tsdk": "${workspaceFolder:Client}/node_modules/typescript/lib", "powershell.codeFormatting.autoCorrectAliases": true, "powershell.codeFormatting.newLineAfterCloseBrace": false, "powershell.codeFormatting.trimWhitespaceAroundPipe": true, "powershell.codeFormatting.useCorrectCasing": true, "powershell.codeFormatting.whitespaceBeforeOpenBrace": false, "powershell.codeFormatting.whitespaceBetweenParameters": true, - "powershell.codeFormatting.pipelineIndentationStyle": "IncreaseIndentationForFirstPipeline" + "powershell.codeFormatting.pipelineIndentationStyle": "IncreaseIndentationForFirstPipeline", + // Lock the TypeScript SDK path to the version we use + "typescript.tsdk": "Client/node_modules/typescript/lib" }, "tasks": { "version": "2.0.0",