I have a TypeScript NPM package where my build process compiles all *.ts files into myLib.d.ts, myLib.js, and myLib.js.map.
In order for my NPM package to function properly, it requires the src/*.ts files as well as the auto-generated myLib.* files.
However, I'm unsure if I should include these auto-generated myLib.* files in my git repository.
Is there a potential issue with publishing files in an npm package that are not under version control?