esbuild
esBuild
// build.js
require('esbuild').build({
entryPoints: ['src/index.ts'],
outfile: 'dist/index.js',
bundle: true, // false๋ฉด ํธ๋์คํ์ผ๋ง ํ๊ฒ๋จ, true์ด๋ฉด treeShaking on
platform: "node",
minify: true,
})Last updated