Rewrite to TypeScript #2

Closed
tornadocontrib wants to merge 24 commits from (deleted):typescript into master
2 changed files with 20 additions and 22 deletions
Showing only changes of commit 8a0bd4a0d6 - Show all commits

@ -55,28 +55,6 @@ const config = [
json()
],
},
{
input: 'src/cli.ts',
output: [
{
file: pkgJson.bin[pkgJson.name],
format: "cjs",
esModule: false,
banner: '#!/usr/bin/env node\n'
},
],
plugins: [
esbuild({
include: /\.[jt]sx?$/,
minify: false,
sourceMap: true,
target: 'es2016',
}),
commonjs(),
nodeResolve(),
json()
],
},
{
input: 'src/merkleTreeWorker.ts',
output: [

@ -53,6 +53,26 @@ module.exports = [
minimize: false,
}
},
{
mode: 'production',
module: {
rules: [esbuildLoader]
},
entry: './src/cli.ts',
output: {
filename: 'cli.js',
path: path.resolve(__dirname, './dist'),
},
target: 'node',
plugins: [],
resolve: {
extensions: ['.tsx', '.ts', '.js'],
alias: {}
},
optimization: {
minimize: false,
}
},
{
mode: 'production',
module: {