esbuild-xyaml-plugin
v0.0.7
Published
esbuild xyaml plugin
Downloads
3
Readme
esbuild-xyaml-plugin
esbuild xyaml plugin
const xyamlPlugin = require('esbuild-xyaml-plugin');
esbuild.build({
entryPoints: ['./src/index.js'],
bundle: true,
outfile: './dist/app/app.js',
loader: {
'.js': 'jsx',
},
sourcemap: true,
target: ['chrome58', 'firefox57', 'safari11', 'edge16'],
define: {
'process.env.NODE_ENV': '"development"',
},
plugins: [xyaml()],
});