Having a unique software application with an unconventional file structure
project
├── tsconfig.json
├── app_1
│ ├── ts
│ └── js
|
└── app_2
├── ts
└── js
I aim to compile files located inside the ts
folder and place them in the corresponding app's js
directory (e.g. compiled files from .ts
files in app_1/ts
should be stored in app_1/js
).
Currently, I leverage VSCode for compilation and organizing files into their respective folders. However, structuring my TSConfig file to achieve this remains elusive. Any assistance on utilizing the outDir
property effectively would be greatly appreciated.