2017-04-07 219 views
5

我試圖編譯我的項目,AOT,但是當我嘗試的命令角2:AOT類型錯誤:Base64是不是一個函數

NGC -p tsconfig-aot.json

它生成AOT文件夾與ngFactroy在第一時間,但是當我改變主TS(如上面所提到的角度文檔)爲引導新生成的ngmodulefactory並重新編譯該項目中使用相同的命令 我收到以下錯誤

TypeError: base64 is not a function 
at Function.from (native) 
at Function.from (native) 
at Object.extractInlineSourceMap (/Users/apache-tomcat-7.0.61/webapps/ChatAppAngular/node_modules/tsickle/build/src/source_map_utils.js:33:19) 
at TsickleCompilerHost.stripAndStoreExistingSourceMap (/Users/apache-tomcat-7.0.61/webapps/ChatAppAngular/node_modules/tsickle/build/src/tsickle_compiler_host.js:128:48) 
at TsickleCompilerHost.getSourceFile (/Users/apache-tomcat-7.0.61/webapps/ChatAppAngular/node_modules/tsickle/build/src/tsickle_compiler_host.js:89:25) 
at findSourceFile (/Users/apache-tomcat-7.0.61/webapps/ChatAppAngular/node_modules/typescript/lib/typescript.js:63453:29) 
at processImportedModules (/Users/apache-tomcat-7.0.61/webapps/ChatAppAngular/node_modules/typescript/lib/typescript.js:63600:25) 
at findSourceFile (/Users/apache-tomcat-7.0.61/webapps/ChatAppAngular/node_modules/typescript/lib/typescript.js:63481:17) 
at processSourceFile (/Users/apache-tomcat-7.0.61/webapps/ChatAppAngular/node_modules/typescript/lib/typescript.js:63384:27) 
at processRootFile (/Users/apache-tomcat-7.0.61/webapps/ChatAppAngular/node_modules/typescript/lib/typescript.js:63271:13) 
Compilation failed 

我做錯了什麼?

回答

6

我找到答案,它的節點JS這裏做什麼的問題,AOT需要節點JS V6 +,我只是更新我的節點,併發出定額,剛剛發佈我的回答是否有人遇到這個問題。

+2

希望這將有助於某人:http://stackoverflow.com/a/18412505/4472973 - 更新窗口節點js的最簡單方法 –

相關問題