Releases: TypeStrong/fork-ts-checker-webpack-plugin
Releases · TypeStrong/fork-ts-checker-webpack-plugin
v1.0.0-alpha.5
v1.0.0-alpha.4
v1.0.0-alpha.3
v1.0.0-alpha.2
- Add
useTypescriptIncrementalApi
(#196) - to use this new feature adduseTypescriptIncrementalApi: true
to the plugin when you initialise it.
v1.0.0-alpha.1
v1.0.0-alpha.0
Breaking Changes
Version 1.x
additionally supports webpack 5 alongside webpack 4, whose hooks are now tapped differently:
- compiler.hooks.forkTsCheckerDone.tap(...args)
+ const forkTsCheckerHooks = ForkTsCheckerWebpackPlugin.getCompilerHooks(compiler)
+ forkTsCheckerHooks.done.tap(...args)
v1.0.0-alpha.0 drops support for node 6.
v0.5.2
v0.5.1
v0.5.0
- Removed unused dependency
resolve
. - Replace
lodash
usage with native calls. - Breaking Changes:
- Removed all getters from
NormalizedMessage
, use direct property access instead.
- Removed all getters from
- Internal:
- Test against ts-loader v5
- Enable all strict type checks
- Update dev dependencies