I have noticed that some errors in my .d.ts files are not being picked up in Webclipse but if I run:
“tsc –watch”
on the same folder they are identified correctly as errors. These files are for some third-party JS libraries.
The most common two I have are (mostly me being on autopilot from also coding in C++/Java):
export class Test {
value: int;
testFunction( param: MyNameSpace::AnotherClass ): void;
}
int instead of number
and :: instead of .
Even with these errors all of my Typescript code is compiled with no errors produced.