Describe the bug
While moving my setup to use typescript, since i'm using strict checking/validation, whenever i try to build/watch the project it throws lots of errors because it seems that api/Client.ts is getting packed to dist folder too (i think it probably shouldn't, right?).
Steps to Reproduce
Steps to reproduce the behavior:
Expected behavior
Client.ts should not be there, only compiled (Client.js) version and the Client.d.ts file
Screenshots


For now i'm manually removing the .ts file and it works fine!
Regards
@sandro-salles it is meant to be there but maybe I can rename it without breaking the functionality that requires it to be there. I'll look into it
@github-actions run
⚡ Release! ⚡
(async () => {
function exec(cmd) {
console.log(execSync(cmd).toString());
}
// Config
const gitUserEmail = "github-actions[bot]@users.noreply.github.com";
const gitUserName = "github-actions[bot]";
exec(`echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > .npmrc`);
exec(`git config --global user.email "${gitUserEmail}"`);
exec(`git config --global user.name "${gitUserName}"`);
exec(`npm i`);
exec(`npm run release-ci`);
//comment on the issue
var result = execSync(`npx auto-changelog -o ./tempchangelog.txt --commit-limit false --template ./compact-keepachangelog.hbs --stdout`).toString();
await postComment(result);
//create changelog image
exec(`npm run release-image`);
exec(`git commit -a -m 'updated release-image'`);
exec(`git push --force`);
})();
64759fc495618f53745697cdf7ee4f6a2a7](https://github.com/open-wa/wa-automate-nodejs/commit/4f6a2a72ce8cfaa6075ecc81e31f2e093ee39059)4affd91Fixed now! Thanks man 👍