Use typescript SDK from node_modules for VSCode

Summary: Force using typescript SDK from node_modules instead of VSCode embedded version when "desktop" root folder opened. Before that we had this setting only when the root folder opened in VSCode.

Reviewed By: mweststrate

Differential Revision: D22508520

fbshipit-source-id: 3663f432f905094613f4c44b0d0d6eac02e1336d
This commit is contained in:
Anton Nikolaev
2020-07-14 02:36:12 -07:00
committed by Facebook GitHub Bot
parent 30213e118f
commit c4f3978c36

View File

@@ -31,5 +31,6 @@
"jest.enableInlineErrorMessages": true, "jest.enableInlineErrorMessages": true,
"jest.runAllTestsFirst": false, "jest.runAllTestsFirst": false,
"jest.pathToConfig": "jest.config.js", "jest.pathToConfig": "jest.config.js",
"jest.pathToJest": "node_modules/.bin/jest" "jest.pathToJest": "node_modules/.bin/jest",
"typescript.tsdk": "node_modules/typescript/lib"
} }