I have been attempting to get to know this new \'TypeScript\' stuff, and I am a bit curious on something.
Can it still work with existing javascript frameworks like jQuer
The simple answer is yes.
TypeScript is able to interact fully with any existing Javascript library. You only need the definition file if you want tooling in the IDE to make it easier to use.
Also, if you don't include the definition file, the TypeScript compiler might get mad at you for using a variable that hasn't been defined in your code (like $
). To get around that you might have to do something like
declare var $;
That said, I'm not sure why you wouldn't want to use the jQuery definition file. It surely makes it much more pleasant to write jQuery with.