A Parcel 2.x transformer plugin for JSY syntax, a JavaScript superset with syntactic sugar. Current stable version is 0.2.1. It transpiles JSY files to standard JavaScript without relying on Babel, instead using the JSY compiler directly. Designed for Parcel 2.x (alpha.3.2+), it integrates as a Parcel transformer plugin, enabling JSX-like syntax and other JSY features in a Parcel build pipeline. Differentiates from Babel-based solutions by being lightweight and Parcel-native.
npm install parcel-transformer-jsyNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Configure Parcel 2.x to use plugin for JSY files and run build.
Use Parcel 2 and ensure package.json lists parcel ^2.0.0.
Use npm package parcel-transformer-jsy for installation.
Use JSY-specific ESLint plugin or disable linting for .jsy files.
Update .parcelrc to use 'parcel-transformer-jsy' as the transformer plugin name.
Add @parcel/plugin as a devDependency: npm install --save-dev @parcel/plugin
Add {"transformers": {"*.jsy": ["parcel-transformer-jsy"]}} to .parcelrc.Ensure .parcelrc correctly references plugin and run 'npm update parcel-transformer-jsy'.