1. rollup-plugin-jsx
Rollup jsx plugin
rollup-plugin-jsx
Package: rollup-plugin-jsx
Created by: konsumer
Last modified: Sun, 26 Jun 2022 13:59:51 GMT
Version: 1.0.3
License: MIT
Downloads: 4,372
Repository: https://github.com/konsumer/rollup-plugin-jsx

Install

npm install rollup-plugin-jsx
yarn add rollup-plugin-jsx

rollup jsx plugin

This is a simple wrapper around jsx-transform. Make sure to go check that out for options.

Install it with npm install rollup-plugin-jsx

Use it like this in your config:

 import jsx from 'rollup-plugin-jsx'

export default {
  dest: 'build/app.js',
  entry: 'src/index.js',
  plugins: [
    jsx( {factory: 'React.createElement'} )
  ],
  sourceMap: true
}

For a more complete example, see buble-react-rollup-starter

RELATED POST

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin