I faced the same issue and the @Adrian Mole answer helped fix it. Basically, my settings.json had the property "typescript.tsdk" like that:
"typescript.tsdk": "node_modules\\typescript\\lib",
So, I basically changed to:
"typescript.tsdk": "./node_modules/typescript/lib",
And it all worked out. Thanks!