Releases: ivogabe/gulp-typescript
v3.1.1 - Fix for bundled types
As of v3.1.0, gulp-typescript uses @types
to provide type information for its dependencies. However, those types included the types for NodeJS which caused that these types could be passed to the compiler in an compilation using gulp-typescript, unwanted. @types/node
is now registered as a devDependency
, so it is not installed any more for users of gulp-typescript.
v3.1.0 - Improved included types
v3.0.2 - @types and source maps
v3.0.1 - Bug fixes with error reporting
v3.0.0 - TypeScript 2.0
Most changes can be found in the article on migration help.
v2.14.1 - Fixed an issue with wrong base paths in tsProject.src()
v2.14.0 - Improved tsProject.src()
The implementation of tsProject.src()
has been replaced. Previously, files were resolved by a glob with gulp.src()
. This glob was handled very inefficiently by glob-stream and the glob didn't always match the behavior of tsc
. The new implementation uses the TypeScript api to resolve all files for better performance.
Related issues: #275, #326, #404, #406
The includes
property of a tsconfig.json
file is now also supported (#320).
v2.13.6 - Type definitions for TS1.8
- Fix type definitions working for TS1.8 - #360
v2.13.5 - Bug fixes
- Allow to override
rootDir
fromtsconfig.json
- #340, #353 - Set correct root directory when
out
is set, with different input sources - #341 - Use less indentation and increase readability of readme - #347
- Fixed an issue with incremental compilation when no files were changes - #342
- Add support for symlinks with typescript@next - #349