I am running an app with angular, amplify and cognito. when I do ng serve
to run the app I have this error.
I tried deleted all the nodes modules, package-lock.json but it does not change a thing
So I am wondering what should I change to make it works properly when doing ng serve.
ERROR in node_modules/amazon-cognito-identity-js/index.d.ts:1:1
- error TS6200: Definitions of the following identifiers conflict with
those in another file: NodeCallback, ClientMetadata, AuthenticationDetails,
CognitoUser, CognitoUserAttribute, CognitoUserPool, CognitoUserSession, CognitoAccessToken, CognitoIdToken, CognitoRefreshToken, CookieStorage
declare module 'amazon-cognito-identity-js' {
node_modules/aws-amplify/node_modules/amazon-cognito-identity-js/index.d.ts:1:1
1 declare module 'amazon-cognito-identity-js' {
Conflicts are in this file.
The
amazon-cognito-identity-js
package is not needed and part ofaws-amplify
.in angular.json under .../build/options:
in tsconfig.json as part of compilerOptions:
then there are no more warnings or errors.