You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey @nwtgck , I'm trying to fix #263 on my fork branch and I've made the change to main.ts, but I can't figure out how to regenerate the dist/index.js file:
Running tsc outputs multiple files (one per source .ts file) to the lib directory, but when I diff the outputted lib/main.js with the existing dist/index.js I get vast differences
Running tsc --outFile dist/index.js throws Only 'amd' and 'system' modules are supported alongside --outFile. (because the tsconfig.json specifies commonjs modules). Switching to either amd or system module types throws other errors.
How can I regenerate the dist/index.js file?
The text was updated successfully, but these errors were encountered:
Hey @nwtgck , I'm trying to fix #263 on my fork branch and I've made the change to main.ts, but I can't figure out how to regenerate the dist/index.js file:
tsc
outputs multiple files (one per source.ts
file) to thelib
directory, but when I diff the outputtedlib/main.js
with the existingdist/index.js
I get vast differencestsc --outFile dist/index.js
throwsOnly 'amd' and 'system' modules are supported alongside --outFile.
(because thetsconfig.json
specifiescommonjs
modules). Switching to eitheramd
orsystem
module types throws other errors.How can I regenerate the
dist/index.js
file?The text was updated successfully, but these errors were encountered: