Struggling to incorporate apollo-angular into my Angular project running on Angular V8, facing the below errors:
The versions of apollo-angular I am utilizing are: "@apollo/client": "^3.4.11", "apollo-angular": "^2.6.0", and "graphql": "^15.5.3".
Curious if it's viable to use these specific versions of apollo-angular with Angular V8 or if an upgrade to Angular V10 is necessary?
38 export type { QueryOptions as PureQueryOptions };
~~~~~~
node_modules/@apollo/client/core/types.d.ts:38:13 - error TS1005: ';' expected.
38 export type { QueryOptions as PureQueryOptions };
~
node_modules/@apollo/client/utilities/observables/Observable.d.ts:3:1 - error TS1128: Declaration or statement expected.
3 export type { Observer, ObservableSubscription, Subscriber, };
~~~~~~
node_modules/@apollo/client/utilities/observables/Observable.d.ts:3:13 - error TS1005: ';' expected.
3 export type { Observer, ObservableSubscription, Subscriber, };
~
node_modules/@apollo/client/utilities/observables/Observable.d.ts:3:61 - error TS1109: Expression expected.
3 export type { Observer, ObservableSubscription, Subscriber, };
~
node_modules/ts-invariant/lib/invariant.d.ts:6:87 - error TS1144: '{' or ';' expected.
6 export declare function invariant(condition: any, message?: string | number): asserts condition;
~~~~~~~~~
** Angular Live Development Server is listening on localhost:4200, open your browser on http://localhost:4200/ **
i 「wdm」: Failed to compile.