Parent Directory
|
Revision Log
chore: add trunk
1 | import * as esbuild from "esbuild"; |
2 | import path from "path"; |
3 | |
4 | await esbuild.build({ |
5 | entryPoints: [path.resolve(__dirname, "../src/main/typescript/wrapper/init.ts")], |
6 | bundle: true, |
7 | minify: true, |
8 | platform: "node", |
9 | tsconfig: path.resolve(__dirname, "../tsconfig.json"), |
10 | outfile: path.resolve(__dirname, "../build/wrapper.js"), |
11 | format: "esm", |
12 | sourcemap: true |
13 | }); |
[email protected] | ViewVC Help |
Powered by ViewVC 1.1.26 |