-
Notifications
You must be signed in to change notification settings - Fork 513
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
Convert from Flow to Typescript for Jaeger-UI #359
Conversation
Signed-off-by: Everett Ross <[email protected]>
Signed-off-by: Everett Ross <[email protected]>
Signed-off-by: Everett Ross <[email protected]>
Signed-off-by: Everett Ross <[email protected]>
Signed-off-by: Everett Ross <[email protected]>
Signed-off-by: Joe Farro <[email protected]>
Signed-off-by: Joe Farro <[email protected]>
Signed-off-by: Joe Farro <[email protected]>
- Minor tweaks to project root .eslintrc.js - Changed TypeScript linting to use project references, which lets packages have their own typings declarations. This required a second tsconfig in jaeger-ui (tsconfig.lint.json) because project references and create-react-app require conflicting values for isolatedModules. https://www.typescriptlang.org/docs/handbook/project-references.html - Used extends in jaeger-ui tsconfig files so they are consistent with the root tsconfig - Added process and global to jaeger-ui typings/custom.d.ts so @types/node can be removed - Remove @types/node and @types/jsdom - Pin parse5@^4.0.0 (via cheerio) to remove its @types/node dependency - Added TNil to shorten `null | undefined`; a bit on the fence about it Signed-off-by: Joe Farro <[email protected]>
Remove no-longer-necessary eslint-disable no-unused-vars Signed-off-by: Joe Farro <[email protected]>
Signed-off-by: Joe Farro <[email protected]>
Signed-off-by: Joe Farro <[email protected]>
Signed-off-by: Joe Farro <[email protected]>
Signed-off-by: Joe Farro <[email protected]>
Signed-off-by: Joe Farro <[email protected]>
Signed-off-by: Everett Ross <[email protected]>
Signed-off-by: Joe Farro <[email protected]>
Signed-off-by: Everett Ross <[email protected]>
Signed-off-by: Everett Ross <[email protected]>
Signed-off-by: Joe Farro <[email protected]>
Signed-off-by: Joe Farro <[email protected]>
Signed-off-by: Joe Farro <[email protected]>
Signed-off-by: Joe Farro <[email protected]>
Signed-off-by: Joe Farro <[email protected]>
Signed-off-by: Everett Ross <[email protected]>
Signed-off-by: Everett Ross <[email protected]>
Signed-off-by: Everett Ross <[email protected]>
Signed-off-by: Joe Farro <[email protected]>
Signed-off-by: Everett Ross <[email protected]>
Signed-off-by: Everett Ross <[email protected]>
Signed-off-by: Everett Ross <[email protected]>
Signed-off-by: Everett Ross <[email protected]>
Signed-off-by: Joe Farro <[email protected]>
Signed-off-by: Joe Farro <[email protected]>
Signed-off-by: Joe Farro <[email protected]>
Signed-off-by: Joe Farro <[email protected]>
Signed-off-by: Joe Farro <[email protected]>
Signed-off-by: Joe Farro <[email protected]>
Signed-off-by: Joe Farro <[email protected]>
Signed-off-by: Joe Farro <[email protected]>
Signed-off-by: Joe Farro <[email protected]>
Signed-off-by: Joe Farro <[email protected]>
Signed-off-by: Joe Farro <[email protected]>
Signed-off-by: Everett Ross <[email protected]>
Codecov Report
@@ Coverage Diff @@
## master #359 +/- ##
=========================================
- Coverage 90.87% 88.17% -2.7%
=========================================
Files 151 157 +6
Lines 3275 3493 +218
Branches 662 798 +136
=========================================
+ Hits 2976 3080 +104
- Misses 245 376 +131
+ Partials 54 37 -17
Continue to review full report at Codecov.
|
Signed-off-by: Joe Farro <[email protected]>
Signed-off-by: Joe Farro <[email protected]>
Signed-off-by: Everett Ross <[email protected]>
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.
Here we go...
Convert from Flow to Typescript for Jaeger-UI Signed-off-by: vvvprabhakar <[email protected]>
Which problem is this PR solving?
Short description of the changes
@flow
, as well as some of the simple non-flow files.Fixes #306.