-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
chore(replay): Align and clean up tsconfig.json
s
#6308
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
Conversation
size-limit report 📦
|
tsconfig.json
stsconfig.json
s
626244b
to
be5f26e
Compare
bc912c4
to
827d0ec
Compare
bf5ff2e
to
9846e4c
Compare
6114aac
to
fb6816e
Compare
test more test remove duplicated `globals` entry in jest.config after rebase add `__DEBUG_BUILD__`
fb6816e
to
12a90b6
Compare
packages/replay/tsconfig.worker.json
Outdated
@@ -7,7 +7,13 @@ | |||
"esModuleInterop": true, | |||
"resolveJsonModule": true, | |||
"skipLibCheck": true, | |||
"target": "es5" | |||
"target": "es5", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
l: Is it on purpose that we keep es5
as target here? Just making sure :D
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good point, we should probably change it to ES6
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nice! Great work!
Well, just took me a day to fight tests 😅 |
This PR aligns and cleans up the
tsconfig.json
files in the replay package. In preparations to applying the monorepo's rollup and sucrase configs, we should first align the tsconfigs. This PR:tsconfig.core.json
andtsconfig.worker.json
. For now we can first focus on the core build and later on revisit the worker build config.tsconfig.test.json
)ref: #6280