We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In my package.json file, I have install "@types/jquery"as a development library; which worked fine before I installed ng2-fullcalendar.
Now if I try to compile the project, I got the following errors:
` ERROR in [at-loader] ./node_modules/@types/jquery/index.d.ts:3786:5 TS2300: Duplicate identifier 'export='.
ERROR in [at-loader] ./node_modules/angular2-fullcalendar/node_modules/@types/jquery/index.d.ts:745:5 TS2374: Duplicate string index signature.
ERROR in [at-loader] ./node_modules/angular2-fullcalendar/node_modules/@types/jquery/index.d.ts:3351:5 TS2375: Duplicate number index signature.
ERROR in [at-loader] ./node_modules/angular2-fullcalendar/node_modules/@types/jquery/index.d.ts:3779:5 TS2300: Duplicate identifier 'export='. `
The text was updated successfully, but these errors were encountered:
I have tried to remove @types/jquery from dev dependencies, which caused other errors.
Also I have tried tsconfig paths option, which worked for others as discussed at here: But not worked for me.
I turned into manually deleted node_modules folder under angular2-fullcalendar directory. And that worked.
Sorry, something went wrong.
Like @lesliesu I had to manually delete node_modules folder under angular2-fullcalendar directory
No branches or pull requests
In my package.json file, I have install "@types/jquery"as a development library; which worked fine before I installed ng2-fullcalendar.
Now if I try to compile the project, I got the following errors:
`
ERROR in [at-loader] ./node_modules/@types/jquery/index.d.ts:3786:5
TS2300: Duplicate identifier 'export='.
ERROR in [at-loader] ./node_modules/angular2-fullcalendar/node_modules/@types/jquery/index.d.ts:745:5
TS2374: Duplicate string index signature.
ERROR in [at-loader] ./node_modules/angular2-fullcalendar/node_modules/@types/jquery/index.d.ts:3351:5
TS2375: Duplicate number index signature.
ERROR in [at-loader] ./node_modules/angular2-fullcalendar/node_modules/@types/jquery/index.d.ts:3779:5
TS2300: Duplicate identifier 'export='.
`
The text was updated successfully, but these errors were encountered: