-
Notifications
You must be signed in to change notification settings - Fork 12.8k
New Error: error TS2590: Expression produces a union type that is too complex to represent #45149
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
Comments
Thank you @amcasey for making a repro. I was trying to look around to see how to resolve such an issue. I think this is also speaking (or maybe unrelated) to some general typing complexit with @fluentui/react-northstar (which is the main UI lib for all Microsoft web properties). I notice when profiling that typechecking these even in current version is much slower than I would expect. May be due to some complex typings. I think this type in particular has very high cost https://github.com/microsoft/fluentui/blob/a9cb101a5bae361fc515895150a4465fe439b7fc/packages/react-compose/src/types.ts#L21 There was some work to try and simplify the type, but not sure how much it has helped |
This feels vaguely similar to #43437. |
This is also going to block the Fluent UI repo from upgrading to TS 4.3 or require introducing a lot of casts to Do any of you have an idea of when this might be addressed, or possibly things to try changing on our end while still maintaining decent type safety? Note that the type linked above and used by |
I get this error on a project I'm working on. However it seems to be dependent on available RAM? works fine when I have enough ram, gives the error when i don't. I'm trying to create a minimal reproduction of the issue but once I strip out unnecessary code the bug disappears? |
I had this error for some custom type code and I figured out a workaround that might be applicable to other people's types that are too complex. I was getting this error on code like: X extends { name: keyof Y } ? ... : never
// `keyof Y` was massive And I worked around it by doing: X extends { name: infer U }
? U extends keyof Y
? ...
: never
: never |
I get that error on a static array of 2000+ objects (list of SNOMED codes) when I add an optional property (additionalInformation) to one object in the array. export interface AllergyInfo {
name: string;
url: string;
}
/**
* Represents a code with a type, a default coding and multiple language displays.
*/
export interface AllergySystemCodeExtension extends SystemCodeExtension {
type: AllergyIdentificationType;
defaultCoding: Coding;
languageDisplays: {
en: string;
de: string;
fr: string;
it: string;
rm: string;
};
additionalInformation?: Array<AllergyInfo>;
} Here in a small array I have no error: const bla: AllergySystemCodeExtension[] = [
{
type: AllergyIdentificationType.SITUATION,
defaultCoding: {
system: 'http://snomed.info/sct',
code: '716186003',
display: 'No known allergy'
},
languageDisplays: {
en: 'No known allergy',
de: 'Keine bekannte Allergie',
fr: "pas d'allergie connue",
it: 'nessuna allergia nota',
rm: '?'
},
additionalInformation: [{name: 'bla', url: 'bla'}]
},
] The dependencies: "devDependencies": {
"@rollup/plugin-commonjs": "22.0.1",
"@rollup/plugin-node-resolve": "13.3.0",
"@types/uuid": "8.3.4",
"rollup": "2.76.0",
"rollup-plugin-peer-deps-external": "2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "0.32.1",
"rollup-plugin-vue": "6.0.0",
"sass": "^1.5.1",
"typescript": "4.5.5"
},
"peerDependencies": {
"@i4mi/fhir_r4": "^1.1.1",
"fhirpath": "^2.14.5",
"quasar": "^2.7.4",
"vue": "^3.2.37"
} Anyone had this before? Help please. |
I am getting the same error for my ts file to export json constant in express.js project. |
The error message seems to be misleading. I had a database table of 5000+ entries exported to a JSON file. When I change the file to I decided to leave it as JSON as read from file using Node fs. |
Weirdly, I had some code that was working when it was all in one file, but once I broke it up into separate files I started getting |
Baseline: TS 4.3.2
Test: e064817
New error:
error TS2590: Expression produces a union type that is too complex to represent.
Dependencies
tsconfig.json
test.tsx
The text was updated successfully, but these errors were encountered: