Release Notes
This page lists breaking changes and notable new features. Please be sure to read the release notes before upgrading from previous version.
The detailed changelog can be found in TSTyche repository on GitHub (opens in a new tab).
TSTyche 4.0
TSTyche 4.0 ships with enhanced protection against accidental any
or never
types and stricter default compiler options.
Keep in mind that TSTyche 4.0 is still in beta. More breaking changes may be introduced before the stable version is released. To install the latest beta version, use the next
distribution tag:
npm add -D tstyche@next
Requirements
The minimum required Node.js version is 20.9
. It is recommended to use the latest Long Term Support (LTS) release.
Matchers
Breaking! The deprecated .toMatch()
matcher is removed.
Breaking! All primitive type matchers like .toBeString()
or .toBeNumber()
are removed.
import { expect } from "tstyche";
- expect<string>().type.toBeString();
+ expect<string>().type.toBe<string>();
- expect<number>().type.toBeNumber();
+ expect<number>().type.toBe<number>();
Configuration
checkSourceFiles
The checkSourceFiles
configuration option is enabled by default.
rejectAnyType
The rejectAnyType
configuration option is enabled by default.
rejectNeverType
The rejectNeverType
configuration option is enabled by default.
target
Breaking! Support for TypeScript 4.x
is dropped. Only 5.x
series can be used for testing.
Command Line
--fetch
--fetch
is the new name of --install
.
Compiler Options
If your project does not have a TSConfig file, the default compiler options now are much more strict:
{
"allowImportingTsExtensions": true,
"allowJs": true,
"checkJs": true,
"exactOptionalPropertyTypes": true,
"jsx": "preserve",
"module": "nodenext",
"moduleResolution": "nodenext",
"noUncheckedIndexedAccess": true,
"resolveJsonModule": true,
"strict": true,
"target": "esnext",
"verbatimModuleSyntax": true
}