mirror of
https://gitlab.com/aviortheking/code-stats-vscode.git
synced 2025-04-22 10:52:13 +00:00
14 lines
430 B
JavaScript
14 lines
430 B
JavaScript
const { NodeModulesPolyfillPlugin } = require('@esbuild-plugins/node-modules-polyfill')
|
|
const { build } = require('esbuild')
|
|
build({
|
|
entryPoints: ['./src/code-stats.ts'],
|
|
plugins: [NodeModulesPolyfillPlugin()],
|
|
bundle: true,
|
|
minify: true,
|
|
sourcemap: true,
|
|
target: ['es2016', 'chrome90', 'firefox78', 'safari14', 'edge90'],
|
|
external: ['vscode', 'node-fetch'],
|
|
outfile: 'out/browser.js',
|
|
format: 'cjs',
|
|
platform: 'node'
|
|
}) |