File tree 3 files changed +18
-1
lines changed
3 files changed +18
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## v0.8.0
4
+
5
+ - Add support for emitting declaration files when ` declaration: true ` is set (#48 , #128 )
6
+ - Fix bug with specifying ` target: es6 ` and ` module: commonjs ` at the same time when using
7
+ TS 1.7+ (#111 , #132 , #140 ).
8
+ - Fix bug with resolving dependencies which are linked using ` npm link ` (#134 , #141 )
9
+
3
10
## v0.7.2
4
11
5
12
- Fix regression with watching definition files (#109 , #110 )
Original file line number Diff line number Diff line change 1
1
# Upgrade Guide
2
2
3
+ ## v0.7.x to 0.8.x
4
+
5
+ This release has two breaking changes:
6
+
7
+ 1 . If you are using TypeScript 1.7+ and specify ` target: es6 ` and
8
+ ` module: commonjs ` , the output will now be CommonJS instead of ES6
9
+ modules. This brings ts-loader into alignment with ` tsc ` .
10
+ 2 . Declaration files are now emitted when ` declaration: true ` is
11
+ specified in the tsconfig.json.
12
+
3
13
## v0.6.x to 0.7.x
4
14
5
15
This release changed loader messages to print on stderr instead of
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " ts-loader" ,
3
- "version" : " 0.7.2 " ,
3
+ "version" : " 0.8.0 " ,
4
4
"description" : " TypeScript loader for webpack" ,
5
5
"main" : " index.js" ,
6
6
"scripts" : {
You can’t perform that action at this time.
0 commit comments