Can I set up typescript.tsdk relative to my project dir/tsconfig file? It looks like this option works only with an absolute path.
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
In your project's .vscode/settings.json
:
{
"typescript.tsdk": "node_modules/typescript/lib"
}
回答2:
You can set in setting.json like this:
"typescript.tsdk": "node_modules/typescript/bin"
But this break ts files that no have typescript installed by npm in root folder. The best solution I have found, was:
"typescript.tsdk": "/Users/<MyUser>/AppData/Roaming/npm/node_modules/typescript/bin"
Still work on ts projects without typescript installed localy.