By default in PHPStorm 6 the compiled *.js are created in the same folder than the *.ts files.
What I need is that the compiled *.js and *.d.js be in a different subdirectory than the same of the *.ts files.
In resume:
I have the root folder "Project"
I have a subfolder "ts" which all *.ts files resides.
I have a subfolder "scripts" where I want the compiled *.js and *.d.js be.
How can I accomplish this with PHPStorm TypeScript file watcher?
I've tried several macros like in the Output field at the File Watcher dialog like:
$FileParentDir$/scripts/$FileNameWithoutExtension$.js:$FileParentDir$/scripts/$FileNameWithoutExtension$.js.map
but none of them worked.
