A Cypress plugin that transpiles TypeScript test files using Webpack during test execution. Version 1.0.5 is current and appears to be a stable release. The plugin wraps a custom Webpack configuration with loaders like babel-loader and TypeScript presets, writes the bundled output to a temporary `tests_build` folder inside `cypress`, and deletes it after the browser closes. Unlike the official @cypress/webpack-preprocessor or cypress-webpack-preprocessor, this package bundles its own Webpack configuration and requires users to manually define loaders. It has no recent updates and limited community adoption. Key differentiator: provides a ready-to-use transpiler wrapper but lacks flexibility and documentation for complex setups.
npm install typescript-cypressNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Shows how to configure typescript-cypress in cypress/plugins/index.js with a custom Webpack module rule using babel-loader and TypeScript presets.
Use require() instead of import.
Ensure no other plugin uses the same folder name, or consider using an alternative preprocessor that allows custom output paths.
Use Webpack 4.41.5 or check compatibility with your version; consider using @cypress/webpack-preprocessor for broader support.
Manually delete cypress/tests_build if you encounter stale files or build errors.
Run `npm install typescript-cypress --save-dev` and ensure node_modules contains it.
Use `const { typescriptCypressTranspiler } = require('typescript-cypress');`Ensure the module rules include test: /\.tsx?$/ with appropriate loaders (babel-loader + presets).
Install webpack version 4: `npm install webpack@4.41.5 --save-dev`.
No dependency data recorded yet.