This is a babel plugin to transform omodule structure scope constants.
$ npm install babel-plugin-transform-omodule-namespace --save-dev
{
"plugins": "transform-omodule-namespace"
}
rootPath
: (Default: project root) - specify the root of omodule structure.
{
"plugins": [
[
"transform-omodule-namespace",
{ "rootPath": "./src" }
]
]
}
namespacePrefix
: (Default: null) - add a prefix to namespace.
{
"plugins": [
[
"transform-omodule-namespace",
{ "namespacePrefix": "/om" }
]
]
}