UNPKG

@tgwf/co2

Version:
17 lines (15 loc) 376 B
const { globPlugin } = require('esbuild-plugin-glob'); function main() { require('esbuild').build({ entryPoints: ['src/**/!(*.test.js|test-constants.js|!(*.js))'], bundle: false, minify: false, sourcemap: true, target: ['node14'], outdir: 'dist/cjs/', outExtension: { '.js': '.js' }, format: 'cjs', plugins: [globPlugin()] }) } main()