UNPKG
asseton
Version:
latest (0.1.1)
0.1.1
0.1.0
Another open banking api
github.com/viliuslinge/asseton
viliuslinge/asseton
asseton
/
build.config.js
12 lines
(11 loc)
•
264 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
require
(
"esbuild"
) .
build
({
entryPoints
: [
"src/index.ts"
],
outfile
:
"dist/index.js"
,
bundle
:
true
,
minify
:
true
,
platform
:
"node"
,
loader
: {
".ts"
:
"ts"
}, }) .
then
(() => console.
log
(
"BUNDLING DONE"
)) .
catch
(() => process.
exit
(
1
));