Node.js buildin模块的新Closure Compiler模块支持和externs

时间:2016-08-12 06:52:44

标签: javascript google-closure-compiler

据我所知,最新的Closure Compiler支持三种类型的模块:ES6,CommonJS和goog.module()。我如何使用Nodejs内部模块?

我有这个非常简单的代码:

const path = require('path');

此编译器标记,以及其他:

--dependency_mode STRICT
--env CUSTOM (without this fails as well)
--externs nodejs/path.js
--language_in ECMASCRIPT6_STRICT
--language_out ECMASCRIPT5_STRICT
--new_type_inf
--process_common_js_modules
--use_types_for_optimization

编译器抛出:

ERROR - Failed to load module "path"

任何提示? 非常感谢提前。

0 个答案:

没有答案