Reputation: 45
I am working with MUI lib, so that I have installed also the lib @mui/x-date-pickers, and I should install the lib @date-io/date-fns/ for my datepicker component work properly, but when I run yarn build I get this message error:
node_modules/@date-io/date-fns/type/index.d.ts:2:15 - error TS2300: Duplicate identifier 'DateType'.
2 export type DateType = Date;
~~~~~~~~
node_modules/@mui/x-date-pickers/node_modules/@date-io/date-fns/type/index.d.ts:2:15
2 export type DateType = Date;
~~~~~~~~
'DateType' was also declared here.
node_modules/@mui/x-date-pickers/node_modules/@date-io/date-fns/type/index.d.ts:2:15 - error TS2300: Duplicate identifier 'DateType'.
2 export type DateType = Date;
~~~~~~~~
node_modules/@date-io/date-fns/type/index.d.ts:2:15
2 export type DateType = Date;
~~~~~~~~
'DateType' was also declared here.
Found 2 errors in 2 files.
Errors Files
1 node_modules/@date-io/date-fns/type/index.d.ts:2
1 node_modules/@mui/x-date-pickers/node_modules/@date-io/date-fns/type/index.d.ts:2
Upvotes: 2
Views: 345
Reputation: 45
Step by step for solving the problem:
Upvotes: -1