Importing multiple times the same module in JavaScript / TypeScript leads to poor readability. It's harder to know what is used from a given module if you have to read all imports. It can also sometimes mask an error.
Thus, we should forbid duplicate imports.