https://travis-ci.org/Microsoft/vscode-go/jobs/162066430 is a travis build failure for the Go extension that uses vscode-debugadapter with the below setting in package.json
"vscode-debugadapter": "^1.11.0"
I can reproduce this locally by clearing the node_nodules folder and running npm install followed by node ./node_modules/vscode/bin/compile
The error is: node_modules/vscode-debugadapter/lib/protocol.d.ts(1,1): error TS1084: Invalid 'reference' directive syntax.
No error if the ^ in the package.json is dropped "vscode-debugadapter": "1.11.0"
Travis builds ran just fine yesterday, so this should be due to the latest upgrade to 1.13 which uses Typescript 2.0 which could have breaking changes.
Including @mousetraps who helped to narrow this down
https://travis-ci.org/Microsoft/vscode-go/jobs/162066430 is a travis build failure for the Go extension that uses vscode-debugadapter with the below setting in package.json
"vscode-debugadapter": "^1.11.0"I can reproduce this locally by clearing the node_nodules folder and running
npm installfollowed bynode ./node_modules/vscode/bin/compileThe error is:
node_modules/vscode-debugadapter/lib/protocol.d.ts(1,1): error TS1084: Invalid 'reference' directive syntax.No error if the
^in the package.json is dropped"vscode-debugadapter": "1.11.0"Travis builds ran just fine yesterday, so this should be due to the latest upgrade to 1.13 which uses Typescript 2.0 which could have breaking changes.
Including @mousetraps who helped to narrow this down