I want my typescript module to be able to access a private npm registry. The typical way of doing that is here: https://docs.npmjs.com/using-private-packages-in-a-ci-cd-workflow#set-the-token-as-an-environment-variable-on-the-cicd-server
I don't think that is possible is it? Since I can't inject an env variable into the ts runtime. The only thought I had was to copy a .npmrc file into the directory at build time that has the token and registry hard coded...