Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mikhail-ev/rollup-plugin-stringify-jsx

stringify-jsx plugin for rollup
https://github.com/mikhail-ev/rollup-plugin-stringify-jsx

jsx plugin rollup stringify stringify-jsx templates

Last synced: 3 days ago
JSON representation

stringify-jsx plugin for rollup

Awesome Lists containing this project

README

        

# rollup-plugin-stringify-jsx
[Stringify-jsx](https://github.com/TargetTaiga/stringify-jsx) plugin for rollup.

## Quick start
```
npm i --save-dev rollup-plugin-stringify-jsx
```
```js
import stringifyJsx from 'rollup-plugin-stringify-jsx';

export default {
input: ['src/index.js'],
output: {
file: 'build/index.js'
},
plugins: [
stringifyJsx( /* stringify-jsx options */ ),
]
};
```

Explore [example project](https://github.com/TargetTaiga/lit-project-template) for more information.