-
Notifications
You must be signed in to change notification settings - Fork 592
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: use common TSConfig for all packages #2872
Conversation
foreach parentDir ("clients" "protocol_tests") for dir in ./$parentDir/*; do (cd "$dir" && sed -i 's/tsconfig.json/tsconfig.cjs.json/g' ./package.json); done for dir in ./$parentDir/*; do (cd "$dir" && mv tsconfig.json tsconfig.cjs.json); done end
Codecov Report
@@ Coverage Diff @@
## main #2872 +/- ##
===========================================
- Coverage 60.42% 34.46% -25.96%
===========================================
Files 554 554
Lines 28886 30459 +1573
Branches 7072 7283 +211
===========================================
- Hits 17453 10499 -6954
- Misses 11433 19960 +8527
Continue to review full report at Codecov.
|
Superceded by #2864 |
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
Internal: JS-2844
Refs: #1307
Description
Update clients and protocol_tests to use root TSConfig
Shell script for renaming tsconfig.json to tsconfig.cjs.json
Script used for updating tsconfig
Testing
CI
Additional context
Attempt to use common TSConfig without bumping Jest #2864
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.