-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Fix typescript build errors/warnings #713
Conversation
Build successful! 🎉 |
@@ -10,6 +10,8 @@ | |||
* governing permissions and limitations under the License. | |||
*/ | |||
|
|||
/// <reference path="css.d.ts" /> |
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.
What happens when the components get published? Does this end up being loaded in user apps?
should it? feels weird that running |
The difference is that tsc processes all files specified by include/excludes but the types transformer uses the asset as the root and only processes imported files (it never sees the css.d.ts file because it isn't imported anywhere). |
Ah right. We're kinda compiling each package independently rather than the whole repo. Do we basically want the one asset as a root, plus the includes? Would be as if there was a tsconfig in each package specifying that. Mostly I'm concerned that the triple slash directive would affect the code once it's published and potentially mess with css handling types that users have in their apps. |
That is indeed a problem:
Only way I can think of is adding
Then TSC would still give us a I did a quite test (the output has a few wrong reeports, but this is about performance...):
So I'd say this is not an option unless you want to take builds 2,5 times longer or we instead create a single TS program and emit all declaration files at once. |
Should there be a tsconfig in every package with
That sounds nice, but kinda hard to do in Parcel's architecture. Probably would avoid TS reparsing a bunch of files though. Not sure if possible anyway - I think outFile would want to bundle them all together into a single file, not per package. |
The types transformer still wouldn't use the
Indeed
If we do want to do that (this would essentially be just a Node script, not inside Parcel), I was thinking of:
|
Build successful! 🎉 |
Build successful! 🎉 |
Build successful! 🎉 |
Build successful! 🎉 |
"include"
, so the global module definiton in@react-types/shared/src/css.d.ts
that defines a type for CSS modules imports is not loaded.I've added a triple-slash reference directive in
@react-types/shared/src/index.d.ts
so that every asset that somehow imports@react-types/shared
gets the definition.Object.keys
andIntl.DateTimeFormatPartTypes
:@react-aria/visually-hidden
also has a CSS import: I've added a reference comment that "imports" the types package to get the definition from 1. andsideEffects: ["*.css"]
📝 Test Instructions:
make build
: no errors/warningsyarn tsc
: no errors/warnings