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
// 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
"scripts:" {
"build": "tsc && node build.js"
}