-
Notifications
You must be signed in to change notification settings - Fork 13.9k
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
refactor(monorepo): frontend code cleanup after monorepo #17639
Conversation
"noImplicitAny": true, | ||
"noImplicitReturns": true, | ||
"noImplicitThis": true, | ||
"noUnusedLocals": true, | ||
"outDir": "./dist", | ||
"pretty": true, |
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.
"pretty" default value is true, remove it.
Codecov Report
@@ Coverage Diff @@
## master #17639 +/- ##
=======================================
Coverage 68.75% 68.75%
=======================================
Files 1595 1595
Lines 65184 65184
Branches 6945 6945
=======================================
Hits 44814 44814
Misses 18488 18488
Partials 1882 1882
Flags with carried forward coverage won't be shown. Click here to find out more. Continue to review full report at Codecov.
|
@@ -33,20 +24,42 @@ | |||
], | |||
"@superset-ui/plugin-chart-*": ["./plugins/plugin-chart-*/src"], | |||
"@superset-ui/preset-chart-*": ["./plugins/preset-chart-*/src"], |
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.
I believe L15-26 can be updated to
"@superset-ui/*": [
"./node_modules/@superset-ui/*/src",
"./node_modules/@superset-ui/*",
],
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.
SUMMARY
TESTING INSTRUCTIONS
CI passed
ADDITIONAL INFORMATION