Skip to content

Commit 99a6c7a

Browse files
committed
Publishing v0.3.2
1 parent c3523f4 commit 99a6c7a

File tree

3 files changed

+13
-1
lines changed

3 files changed

+13
-1
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## v0.3.2
4+
5+
- Add support for manually adding files (#6)
6+
- Add paths to source maps (#8)
7+
38
## v0.3.1
49

510
- Add support for specifying a custom TypeScript compiler

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,13 @@ Specify whether or not TypeScript will allow inferring the `any` type.
5656
Allows use of TypeScript compilers other than the official one. Should be
5757
set to the NPM name of the compiler.
5858

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+
5966
##### instance *(string)*
6067

6168
Advanced option to force files to go through different instances of the

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ts-loader",
3-
"version": "0.3.1",
3+
"version": "0.3.2",
44
"description": "TypeScript loader for webpack",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)