Releases: TypeStrong/ts-loader
Releases · TypeStrong/ts-loader
v1.3.1
v1.3.0
- Introduce meaningful error when importing TypeScript from
node_modules
- Introduce
entryFileIsJs
loader option which allows having an entry file which is js. resolves #388 and #401 - thanks @Wykks and @pqr.
NB Previously the entryFileIsJs
option was on by default when allowJs
was true. Now it has to be specified directly. Strictly speaking this is a breaking change; however given this is a rarely used option which exists for what is arguably an edge case this is being added without moving to 2.0. If this breaks people then we'll never do this again; I'd be surprised if anyone is relying on this though so we're taking a chance. Related tests have been suffixed "-entryFileIsJs" in the test name.
v1.2.2
v1.2.1
v1.2.0
- Crash when adding/removing files in watch-mode [#358] - thanks @JBBr for the suggested fix
- Provided an option to produce Visual Studio compatible error output [#355] - thanks @gamli