| COMPILE-MODULES(1) | User Commands | COMPILE-MODULES(1) |
compile-modules - Transpile ECMAScript 6 modules to ECMAScript 5
Display help for the given command.
Converts the given modules by changing import/export statements to an ES5 equivalent.
Resolvers resolve import paths to modules. The default resolver will search the include paths provided by `--include` arguments and the current working directory. To provide custom resolver logic, pass the path to your resolver module providing a `resolveModule` function or class with an instance method with this signature:
`resolveModule(importedPath:String, fromModule:?Module, container:Container): Module`.
| compile-modules |