@chialab/esbuild-plugin-babel

A pluggable esbuild plugin that runs babel for es5 transpilation.

Usage no npm install needed!

<script type="module">
  import chialabEsbuildPluginBabel from 'https://cdn.skypack.dev/@chialab/esbuild-plugin-babel';
</script>

README

Esbuild Plugin Babel • A pluggable esbuild plugin that runs babel for es5 transpilation.

NPM


Install

$ npm i @chialab/esbuild-plugin-babel -D
$ yarn add @chialab/esbuild-plugin-babel -D

Usage

import esbuild from 'esbuild';
import babelPlugin from '@chialab/esbuild-plugin-babel';

await esbuild.build({
    plugins: [
        babelPlugin({
            plugins: [...],
        }),
    ],
});

Please not that it already includes typescript syntax support, the env preset and supports the transpilation of tagged templates with htm to JSX.


License

Esbuild Plugin Babel is released under the MIT license.