No exported symbols with es6 modules library compiled by Closure Compiler
问题 Starting point : Many js files are successfully compiled (no warning/error) by Closure Compiler (ADVANCED_OPTIMIZATIONS level) in a single library file. In these js files: goog.require and goog.provide are used to import/export things between them /** @export */ is used in front of whatever (const/function/Class/var) is required outside the library. Some HTML files include the library and some non compiled js accessing successfully to all whatever defined in this library. What I want: move to