Releases: TypeStrong/fork-ts-checker-webpack-plugin
Releases · TypeStrong/fork-ts-checker-webpack-plugin
v6.5.1
v7.2.3
v7.2.2
v7.2.1
v7.2.0
v7.1.1
v7.1.0
v7.0.0
7.0.0 (2022-01-29)
This release drops support for some older versions of TypeScript, Webpack, and Node.js, and removes EsLint feature.
Bug Fixes
Features
- drop support for node 10 (59a1b29)
- drop support for webpack 4 (#638) (cdb531f)
- improve error formatting to match webpack 4 convention (#641) (acc7d12)
- migrate from reporters to workers (#691) (f7dfdcf)
- port changes from main branch (#649) (ad466df)
- remove eslint support (#607) (98e4f39)
- remove support for TypeScript < 3.6.0 (#643) (82e8448)
- simplify logger options (#695) (4b13fd3)
- upgrade dependencies (7930493)
- use simple program for single compilation (no watch) (#574) (a195dd5), closes #572
BREAKING CHANGES
- 🧨 Webpack 4 is no longer supported. Please upgrade to Webpack ^5.11.0 or use an older version of the plugin.
- 🧨 ESLint is no longer supported. Please use version 6 of the plugin if you need eslint support, or switch to a different plugin for linting.
- 🧨 TypeScript < 3.6.0 is no longer supported. Please use version 6 of the plugin if you depend on an older version of TypeScript
- 🧨 Node.js < 12 is no longer supported.
- 🧨 Minimal version of TypeScript with { build: true } mode changed from 3.6.0 to 3.8.0
- 🧨 Changes in options:
logger.issues
becomeslogger
,logger.devServer
becomesdevServer
,logger.infrastructure
has been removed
v7.0.0-alpha.16
7.0.0-alpha.16 (2022-01-29)
v7.0.0-alpha.15
7.0.0-alpha.15 (2022-01-28)
Bug Fixes
- add missing peer dependencies (#507) (34ebcd8)
- add missing realpath and initialize files in memory (c37a58c), closes #630
- avoid loading configs from node_modules dir (#613) (6fccb20), closes #606
- do not emit buildinfo file if outfile is specified (#614) (f83ac29), closes #608
- ensure typescript is imported only as type-only (#633) (d660ad1)
- list symlinked dirs in controlled typescript system (#625) (0e682bb)
- properly resolve project-references configuration (#615) (c297d58)
- recompute dependencies on every run (7afc037)
- support "setup" attribute in <script> tag in vue 3 (#667) (2cfe45f), closes #665
- support "setup" attribute in <script> tag in vue 3 (#676) (40e4ecf), closes #668
- use "exclude" from tsconfig.json in webpack watch (#624) (8d8125c)
- use memfs for ts artifacts to prevent mtime conflict (#617) (05cf957)
Features
- add support for eslint 8 (#666) (551f2fb), closes #664
- implement write-dts mode (#679) (61f7cdf)
- use separate workers for dependencies and issues (#636) (4cb7e39), closes #612 #634