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
When updating from 0.5.5 to 0.6.2 npm install throws a bunch of ...
npm install
typings/main/ambient/async/index.d.ts (27,5): Duplicate identifier 'started'. (2300) typings/main/ambient/async/index.d.ts (30,5): Duplicate identifier 'concurrency'. (2300) typings/main/ambient/async/index.d.ts (35,5): Duplicate identifier 'saturated'. (2300)
Mind you this is a very truncated list. I haven't looked into why it's happening yet, at this point i'm curious if someone has seen it happen.
Typescript v1.8.7 Typings v0.7.9
The text was updated successfully, but these errors were encountered:
You might need to provide links to reproduce the issue. I'm going to guess you actually have duplicate identifiers.
Sorry, something went wrong.
@blakeembrey - It was the same general issues as microsoft/TypeScript#6475
In the end, I just has to tool around with the tsconfig "exclude" : until I got the semantics right.
"exclude" :
From "exclude": [ "node_modules", "typings/browser.d.ts", "typings/browser/**" ],
"exclude": [ "node_modules", "typings/browser.d.ts", "typings/browser/**" ],
To "exclude": [ "node_modules", "typings/browser.d.ts", "typings/browser" ],
"exclude": [ "node_modules", "typings/browser.d.ts", "typings/browser" ],
Kind of an odd issue but hey, whatever works. Thanks for the quick response :)
Ah, yes. The tsconfig.json exclude shouldn't be globs. Glad you sorted it out 😄
tsconfig.json
No branches or pull requests
When updating from 0.5.5 to 0.6.2
npm install
throws a bunch of ...typings/main/ambient/async/index.d.ts (27,5): Duplicate identifier 'started'. (2300) typings/main/ambient/async/index.d.ts (30,5): Duplicate identifier 'concurrency'. (2300) typings/main/ambient/async/index.d.ts (35,5): Duplicate identifier 'saturated'. (2300)
Mind you this is a very truncated list. I haven't looked into why it's happening yet, at this point i'm curious if someone has seen it happen.
npm install
Typescript v1.8.7
Typings v0.7.9
The text was updated successfully, but these errors were encountered: