TypeScript konusunda oldukça yeniyim ve şu anda proje yapıma göre birkaç yerde .ts dosyalarım var:
app/
|-scripts/
|-app.ts
|
|-classes/
| |-classA.ts
| |-classB.ts
|
|-controllers/
| |-controllerA.ts
| |-controllerB.ts
|
|-otherStuff/
|-otherstuffA.ts
Şu anda, dosyalarım derlendiğinde, .ts dosyalarının bulunduğu dizinde derleniyorlar:
app/
|-scripts/
|-app.ts
|-app.js
|
|-classes/
| |-classA.ts
| |-classB.ts
| |-classA.js
| |-classB.js
|
|-controllers/
| |-controllerA.ts
| |-controllerB.ts
| |-controllerA.js
| |-controllerB.js
|
|-otherStuff/
|-otherstuffA.ts
|-otherStuffA.js
.Js dosyalarının .ts dosyalarıyla aynı dizin yapısını korumasını sevsem de, .js dosyalarını VCS'imde izlemek istemiyorum, bu nedenle tüm JavaScript dosyalarımı bir ayrı dizin ağacı (daha sonra .gitignore'a ekleyebileceğim), şöyle:
app/
|-scripts/
| |-app.ts
| |
| |-classes/
| | |-classA.ts
| | |-classB.ts
| |
| |-controllers/
| | |-controllerA.ts
| | |-controllerB.ts
| |
| |-otherStuff/
| |-otherstuffA.ts
|
|-js/
|-app.js
|
|-classes/
| |-classA.js
| |-classB.js
|
|-controllers/
| |-controllerA.js
| |-controllerB.js
|
|-otherStuff/
|-otherstuffA.js
TypeScript derleyicisine bunu yapmasını söyleyen bir ayar veya seçenek var mı? Ayrıca alakalı olup olmadığından emin değilim ama WebStorm kullanıyorum.