OK, so I don't really know how to get from where I am to having a package to upload to npm. At the moment, on the make_component branch, most script targets work:
yarn
yarn test
yarn start
yarn build
However, I added a build:esm target (because I think that's what I want for uploading to npm) that looks like "build:esm": "tsc --target es2018 --outDir esm", but when I run this, nothing happens. Additionally, when I try to run it on the command line, a la ./node_modules/typescript/bin/tsc --target es2018 --outDir esm nothing happens and there is no output.
OK, so I don't really know how to get from where I am to having a package to upload to npm. At the moment, on the make_component branch, most script targets work:
However, I added a
build:esm
target (because I think that's what I want for uploading to npm) that looks like"build:esm": "tsc --target es2018 --outDir esm",
but when I run this, nothing happens. Additionally, when I try to run it on the command line, a la./node_modules/typescript/bin/tsc --target es2018 --outDir esm
nothing happens and there is no output.