-
Sometimes you have a module that uses types from another module but doesn't actually need the functionality for it (for example: a module that defines functions that use types from another module which is called elsewhere) Right now there are 2 options that I know of (if there's another way I'd love to know): If a better way to handle this situation could be considered that would be great |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
You can do that today with
This will load the type info without outputting a |
Beta Was this translation helpful? Give feedback.
You can do that today with
This will load the type info without outputting a
require()
call in the generated code.