我正在开发一个PhoneGap应用程序,我尝试实现Typescript和requiredjs,但出于某种原因。我收到了这个错误:
我不明白为什么Phonegap正在生成或以某种方式使用socket.io
这是我的结构
我有appLoader.ts
declare let requirejs:any;
declare let $:any;
declare let angular:any;
requirejs.config({
shim: {
"jquery.mobile-1.4.5.min":["jquery-1.11.3.min"],
"angular.min":["jquery.mobile-1.4.5.min"],
"index":["angular.min"],
"ngCart":["angular.min"],
"app":["angular.min","ngCart"],
"app_controller":["app"],
"controller/searchPostCondeController":["app_controller"]
}
});
let dependencies = ["jquery-1.11.3.min","jquery.mobile-1.4.5.min","index","angular.min","ngCart","app","app_controller","controller/searchPostCondeController"];
requirejs(dependencies, function() {
angular.bootstrap($('html'), ['myApp']);
});
我没有任何我正在使用的套接字io。我也注意到了这个
在我的requirejs之后有一个袜子io包含我手动不包括在内。或嵌入我的HTML。