Releases: AviVahl/ts-tools
Releases · AviVahl/ts-tools
node-typescript-service@0.4.2
- Fixed exception when
ts.sys.getModifiedTime
returnsundefined
. Opened an issue to TypeScript regarding the wrong signature.
typescript-support@0.5.0
- Now uses TypeScript's colored diagnostic printing by default when environment supports it.
- New
typescript-support/warn
entry point. It callsconsole.warn()
instead of throwing on diagnostics. - Removed
chalk
dependency. - No longer forces node style resolution, which allows end-users to use classic resolution, if they wish.
node-typescript-service@0.4.1
- Tiny release to update
package.json
to the new repository name.
typescript-support@0.4.1
- Feature: emit inline source maps in generated JavaScript code. This fixes compatibility with tooling such as VSCode's debugger, which is now able to pick them up and use them.
typescript-support@0.4.0
- First version after package separation/renaming.
- Easier registration. Simply pre-require (
-r
) the package root (typescript-support
). - Tweaked for TypeScript 2.9 support (handling of
declarationMap
)
node-typescript-service@0.4.0
- First release of standalone service package. API changed.
- Feature: allow specifying custom transformers.
v0.3.0
- (Breaking) Refactored API. Can now be customized with options. No longer uses a global module state.
- Improved tests. Require hook (
/register
entry point) is being tested in several scenarios, including type isolation and source-maps, with or without atsconfig.json
. - Fixed exposing errors on Windows. Caught by adding AppVeyor CI and the improved tests.