I'm trying to convert a project to use project.json instead of packages.config for NuGet packages.
To do the conversion, I used this converter... https://marketplace.visualstudio.com/items?itemName=TaylorSouthwickMSFT.NuGetPackagetoProjectjsonConverter
The conversion seemed to work correctly. However after doing this, I cannot get my typescript files to compile. It appears it can no longer find the *.d.ts files for any of the js modules.
I've tried using nuget to re-install the packages and js and associated DefinitelyTyped packages, but it doesn't help.
I'm guessing for some reason the typescript compilation process my project is using is not compatible with the new project.json package locations.
I've tried removing and re-installing the typescript extension, but this hasn't helped.
Is there some other way I need to be compiling typescript when using project.json NuGet packages?
I obviously took a full backup of the project before converting my packages.config file, so can restore if need be, but I would really like to try getting project.json to work properly first.