Bundle dev command [question]
acerbisgianluca opened this issue · 2 comments
acerbisgianluca commented
Hi, I'm new to Typescript and I'm looking at the scripts in package.json
. Shouldn't bundle:dev
be called on dist/app.dev.js
instead of src/app.dev.ts
? Do I have to add npm run tsc
in prebundle
command? Thanks
aswetlow commented
Hey @acerbisgianluca
esbuild
takes care of "everything" :)
npm run tsc
isn't required in prebundle
acerbisgianluca commented
Got it, thank you again!