If other extensions end up with code such as the following: ```typescript decorate(injectable(), EventEmitter); ``` Src - src/client/ioc/container.ts Then the extension that loads second will crash. Solution: ```typescript try { decorate(injectable(), EventEmitter); } catch {} ```
If other extensions end up with code such as the following:
Src - src/client/ioc/container.ts
Then the extension that loads second will crash.
Solution: