File tree 3 files changed +13
-1
lines changed
3 files changed +13
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## v0.3.2
4
+
5
+ - Add support for manually adding files (#6 )
6
+ - Add paths to source maps (#8 )
7
+
3
8
## v0.3.1
4
9
5
10
- Add support for specifying a custom TypeScript compiler
Original file line number Diff line number Diff line change @@ -56,6 +56,13 @@ Specify whether or not TypeScript will allow inferring the `any` type.
56
56
Allows use of TypeScript compilers other than the official one. Should be
57
57
set to the NPM name of the compiler.
58
58
59
+ ##### additionalFiles * (array of string) (default=[ ] )*
60
+
61
+ Allows additional files to be manually passed to the TypeScript compiler.
62
+ For example, if you want to make a declaration file available without
63
+ actually referencing it in code with a ` /// <references /> ` tag. Should
64
+ consist of rooted paths.
65
+
59
66
##### instance * (string)*
60
67
61
68
Advanced option to force files to go through different instances of the
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " ts-loader" ,
3
- "version" : " 0.3.1 " ,
3
+ "version" : " 0.3.2 " ,
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