-
I noticed that there are already three extensions under the theia-ide/theia-extensions directory: launcher, product, and updater. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hey @NO-MAP, in the end, all a Theia compile-time extension really is, is an npm package with a package.json that contains a theia/packages/toolbar/package.json Lines 44 to 48 in b89f0f8 Each entry should point towards a file that exports an inversify |
Beta Was this translation helpful? Give feedback.
Hey @NO-MAP,
in the end, all a Theia compile-time extension really is, is an npm package with a package.json that contains a
theiaExtensions
entry:theia/packages/toolbar/package.json
Lines 44 to 48 in b89f0f8
Each entry should point towards a file that exports an inversify
ContainerModule
. If you want to create an additional extension, you can just do copy and paste from an existing extension.