Reputation: 4536
When setting in WebStorm custom TypeScript version (for example 2.5.2) then option "Track Changes" under "Enable TypeScript Compiler" stop working, it works only with the WebStorm bundled TypeScript Compiler. Basically when you create a *.ts file it is no longer compiled automatically as it is the case when you use the bundled inside WebStorm TypeScript compiler.
Can someone confirm that this is the case or "Track Changes" should work with any TypeScript version ?
Upvotes: 1
Views: 312
Reputation: 8136
It is a WebStorm bug: WEB-28374
Workarounds:
"compileOnSave":true
option to the tsconfig.json
Upvotes: 4