Releases: ivogabe/gulp-typescript
Releases · ivogabe/gulp-typescript
v2.13.3 - Bug fix
Fixed an issue where the base path of the output was wrong. This caused that files would be written outside the gulp.dest
location - #338
v2.13.2 - Regression fix
Fixed a regression of 2.13.1. Configurations with outFile
or rootDir
could fail sometimes.
v2.13.1 - Bug fixes
- Fix caching issue (#328)
- Report configuration errors and fix inconsistencies between gulp-typescript and tsc (#247)
- Support
rootDir
and update docs (#308, #327)
- Update TypeScript to 1.8.10 (#323)
- Ignore
outDir
when isolatedModules
is set (#260)
v2.13.0 - Included typings and path mappings support
- Support for path mappings (#299)
- Include typings (#314)
- Updated dependencies (including TypeScript to 1.8.9)
v2.12.2 - Fix performance drop
- Fixed performance of
tsProject.src()
(#282)
- Only use source paths for base path calculation (#253)
- Support
lib
option of TypeScript 2.0
- Fix error with check for
require.cache
(#315)
v2.12.1 - Bug fixes
- Fixed tests on Windows (#294)
- Keep filename casing in source maps (#255)
- Don't set default
target
and module
(#297)
- Show error when a project is used in multiple compilations (#157)
- Support comments in
tsconfig.json
(#210)
- Update TypeScript to 1.8.7 (b3c649e)
v2.12.0 - Update TypeScript to 1.8
- Updated TypeScript to 1.8
- Added support for
allowJs
option
v2.11.0 - Revised base path handling
- Revise base path handling in
tsProject.src()
(#276)
- Emit
finish
event (#245)
- Update TypeScript to 1.7.5 (#269)
- Fix bug when filtering files of a parent directory (#262)
v2.10.0 - Update to TypeScript 1.7
- Updated TypeScript to 1.7
- Various changes to readme
- Show correct error when a file from
tsconfig.json
is not found (#221)
v2.9.2 - Fixed an issue with .tsx files
- Fixed an issue that .tsx files were not compiled when using
tsProject.src()
(#216)