I'm using TS 1.7 and I'm trying to compile my project to one big file that I will be able to include in my html file. My project structure looks like this: ``` -build // Build directory -src // source root --main.ts // my "Main" file that uses the imports my outer files --subDirectories with more ts files. -package.json -tsconfig.json ``` my tsconfig file is: ``` { "compilerOptions": { "module":"amd", "target": "ES5", "removeComments": true, "preserveConstEnums": true, "outDir": "./build", "outFile":"./build/build.js", "sourceRoot": "./src/", "rootDir": "./src/", "sourceMap": true } } ``` When I build my project I expect the build.js file to be one big file compiled from my source. But ths build.js file is empty and I get all of my files compiled o js files. Each of my TS files look a bit like this ``` import {blabla} from "../../bla/blas"; export default class bar implements someThing { private variable : string; } ``` What am I doing wrong ?