Atom and TypeScript, compile multiple modules into one * .js

I have a project with 4 .ts files, and I'm trying to compile them into a single .js file. The problem I ran into is that any save to any file generates a .js compilation of this file (without links to links).

If I add the "out" key in tsconfig.json, nothing compiles, ei no file is output. Any ideas on where I can mess up?

This is my starting point, index.ts enter image description here

My tsconfig.json enter image description here

This is how I want it to be output, this is from my eclipse setting, which currently works fine. I would prefer to use Atom. enter image description here

Edit: this is tsconfig.json with "out". enter image description here

+4
source share

All Articles