When coding in TypeScript should the generated .js files be committed to git?

前端 未结 1 454
无人共我
无人共我 2021-01-07 18:50

When using TypeScript to write node.js application, what is the recommended way to deal with generated .js files?

Should I add generated .js files to .gitignore and

相关标签:
1条回答
  • 2021-01-07 19:10

    Any build artifacts for any and every VCSes have to be excluded from storing in repository. Just because repository must hold sources, using which you can re-build results in any environment and in any intermediate stored state

    0 讨论(0)
提交回复
热议问题