A Jest runner for the TypeScript compiler that allows running type checking as part of the Jest test suite. Version 1.6.0 (latest, 2019) uses transpileModule for faster builds and supports custom tsconfig paths. No significant updates since 2019; library is in maintenance mode. Differentiators: integrates TypeScript compilation directly into Jest's runner pipeline, provides type errors as test failures, and supports project references via tsconfig. Alternatives: ts-jest for combined compilation and testing, or a separate tsc --noEmit step.
npm install jest-runner-tscNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Configuration example showing how to use jest-runner-tsc as a Jest runner, including optional tsconfig path setting.
Ensure your testMatch glob covers all TypeScript files you want to type-check, or use tsconfig's include/files.
Consider using ts-jest with isolatedModules or separate tsc --noEmit step.
If your tsconfig is not in rootDir, set 'tsconfigPath' in jest-runner-tsc config.
Do not expect any compiled output; use a separate build step.
Install jest-runner-tsc as devDependency and ensure Jest can resolve it (check working directory).
Remove displayName or upgrade Jest to >=24.
Install TypeScript: npm install --save-dev typescript
No dependency data recorded yet.