After upgrading from RxJS 5 to 6, I used the migration tool to update my code:
rxjs-5-to-6-migrate -p tsconfig.json
Upon completion, I encountered a series of messages like this:
WARNING: /path/to/file.ts[3, 1]: duplicate RxJS import
It seems like this warning appears for every file in my project that imports more than one item from rxjs (e.g.
import {Observable, BehaviorSubject} from "rxjs"
). The migration guide includes multiple imports as an example, so I assumed it should be acceptable. A quick Google search only yielded one single result for the warning message, and it does not seem to address the same issue (none of the files have any deprecated imports).
What exactly does this warning mean, and should I be concerned about it?