This repository has been archived by the owner on May 31, 2023. It is now read-only.
Typescript learning experience #1
nichoth
started this conversation in
Development notes
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
It took some time to figure out how to compile a test. Finally landed on this npm script:
Surprised because if you pass in a filename to the
tsc
command, then it doesn't seem to use thetsconfig.json
file.esbuild
will also just work with typescript source, so we don't have to use thetsc
command at all:We want to use
esbuild
here becausetsc
will not bundle our JS code.Beta Was this translation helpful? Give feedback.
All reactions