You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A recent change in TypeScript has caused a breaking change that affects the vscode-languageserver, vscode-languageserver-types, vscode-languageclient and vscode-jsonrpc packages. Specifically, extensions are now required in the "typings" field in package.json. These packages all have something like the following in their package.json files:
"typings": "lib/main"
Due to this change, all of these references must instead now point to something like the following:
"typings": "lib/main.d.ts"
The text was updated successfully, but these errors were encountered:
rbuckton
changed the title
extensionless "typings" entries in package.json no longer work as of TypeScript 2.1.0-dev.20160820
Extensionless "typings" entries in package.json no longer work as of TypeScript 2.1.0-dev.20160820
Aug 22, 2016
A recent change in TypeScript has caused a breaking change that affects the
vscode-languageserver
,vscode-languageserver-types
,vscode-languageclient
andvscode-jsonrpc
packages. Specifically, extensions are now required in the"typings"
field in package.json. These packages all have something like the following in their package.json files:Due to this change, all of these references must instead now point to something like the following:
The text was updated successfully, but these errors were encountered: