In Visual Studio, I create an default TypeScript site.
I then use Nuget to add jquery.d.ts.
I then compile the app.
The error window shows me 101 Errors in the jquery.d.ts file such as:
Error 341 ',' expected.
How do I resolve these errors?
Have I incorrectly imported the file, or is there some setting I need to set?
The actual error as shown in the UI says:
A parameterized initializer is only allowed in a function or constructor implementation.
On this line:
replaceAll(target: JQuery|any[]|Element|string): JQuery;