Adds precompilation of TypeScript files and all the basic generation types to the `ember generate` command.
npm install ember-cli-typescript-compilerCaveats: SourceMaps don't work.
```
ember install https://github.com/philipbjorge/ember-cli-typescript-compiler.git
I would also recommend disabling sourcemaps in ember-cli-build as they don't seem to work and it speeds up builds.
```
var app = new EmberApp(defaults, {
sourcemaps: {
enabled: false, // these don't work right now with ts or es6
}
// Add options here
});
At this point, you can rename any JS file under the app/ or test/ folders to .ts and expect it to work!
Currently there are no options to pass in.