Hello,
I am writing a command plugin (SPM) and I already have a module where I want to embed the generated source files. This is part of the outport object in the config file:
"schemaTypes" : {
"moduleType" : {
"embeddedInTarget" : {
"accessModifier": "internal",
"name": "MyModuleName" // ✨
}
},
"path" : "./Generated/Types",
},
The part that is bugging me is the fact the I have to specify a namespace for this generation:
{
"schemaNamespace" : "Api",
.. the rest of the config
}
Ideally I would like to not namespace the generated types.
I have tried passing an empty string, removing the "schemaNamespace" : "Api"
key-value but they have resulted in errors.
So I would like to know if it is possible to not namespace the generated types?
Thanks