-
Notifications
You must be signed in to change notification settings - Fork 578
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(non-clients): remove comments from transpiled JS files #2813
Conversation
Done by using shell script for dir in */; do ( cd "$dir" && echo '{ "compilerOptions": { "rootDir": "./src", "declarationDir": "./dist/types" }, "exclude": ["src/**/*.spec.ts", "dist/types/**/*"], "extends": "../../tsconfig.types.json" }' >tsconfig.types.json ) done
Codecov Report
@@ Coverage Diff @@
## main #2813 +/- ##
=======================================
Coverage 60.41% 60.41%
=======================================
Files 554 554
Lines 28883 28883
Branches 7076 7076
=======================================
Hits 17450 17450
Misses 11433 11433 Continue to review full report at Codecov.
|
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs and link to relevant comments in this thread. |
Issue
Refs: #2799
Description
Removes comments from transpiled JS files.
Note:
tsconfig.types.json
which is currently shipped in npm package. It would be reduced when we publish onlydist
folders (example experimental PR feat(client-s3): publish files in dist-* trivikr/temp-client-s3#7)Before
Total size: 9.18 MB
After
Total size: 9.44 MB
Testing
Verified that comments are not present in transpiled JS files.
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.