Skip to content

Latest commit

 

History

History
 
 

esbuild-plugin-babel

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

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.