How to force VSCode to use locally installed TypeScript

Is there a way to force Visual Studio Code to use the TypeScript installed locally in a JS project (instead of the version bundled with VSCode, or the version installed globally) for type checking when editing that project?

4

2 Answers

I assume that you have installed TypeScript in the myProject directory.

cd myProject
npm install --save-dev typescript

If you have already done that, then add a .vscode/ directory with a settings.json file that specifies the TypeScript SDK to use:

{ "typescript.tsdk": "node_modules\\typescript\\lib"
}

This is the final directory structure:

myProject .vscode settings.json node_modules typescript lib

Important: make sure that you open VSCode in the myProject directory!

The VS Code documentation calls this "using the workspace version of TypeScript."

7

Shaun Luttins answer worked for me except for one detail: Using Version 1.31.1 of Visual Studio Code file settings.json only works if placed directly in the root folder of the workspace, not in folder .vscode.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like