ember-cli-typescript
Advanced tools
Changelog
[1.1.1] - 2018-02-12
ember-cli-version-checker
version too low by putting it in peerDependencies
.Changelog
[1.1.0] - 2018-02-12
ember generate <blueprint>
now creates TypeScript files for youember-cli-typescript
and typescript
itself can remain in devDependencies
instead of dependencies
, and addons can easily distribute compiled JavaScript with TypeScript type definition (.d.ts
) files.ember serve
or ember test --serve
now use TypeScript's tsc --watch
mode to only rebuild what changed, so your builds should be much fastertsconfig.json
is no longer so annoyingly temperamental; you can largely do what you want with itember serve
no longer triggers a full rebuild of all TypeScript files every time any file in your project changes.Changelog
[1.0.6] - 2017-12-17
Changelog
[1.0.5] - 2017-11-23
tsconfig.json
blueprint to set the noImplicitThis
option to true
, improving experience around use of updated type definitionsChangelog
[1.0.4] - 2017-11-13
environment.d.ts
Changelog
[1.0.3] - 2017-08-22
stdout
and TS error messages now properly go to stderr
Changelog
[1.0.2] - 2017-08-16
tsconfig.json
to set "modules": "ES6"
in the compiler options, so that codemods which operate on modules, like babel-plugin-ember-modules-api-polyfill, will actually work. (Yes, this is 1.0.1, but done correctly.)Changelog
[1.0.1] - 2017-08-16
tsconfig.json
to set "modules": "ES6"
in the compiler options, so that codemods which operate on modules, like babel-plugin-ember-modules-api-polyfill, will actually work.Changelog
[1.0.0] - 2017-08-08
paths
(thanks @toranb!)broccoli-typescript-compiler
option throwOnError
with the tsconfig.json
noEmitOnError
option.this.ui.write
instead of console.log
.allowJs
option to TypeScript, since Broccoli manages the tree so .ts
and .js
files for us.