在构建时 Angular 应用程序在库函数关闭时停止 Cordova

At build Angular App stops on library function closures Cordova

我有一个使用 Visual Studio 2013 和 Cordova 构建的 Ionic/Angular 应用程序。每次我构建我的项目时,它都会停止在我的许多 js files/libraries 的函数闭包上。我必须点击 resume 5 或 6 次才能让我的项目完成构建。这些位置显然没有断点。我可以做些什么来解决这个问题,或者至少告诉 visual studio 忽略这些位置?

这是一个例子:

(function () {
    "use strict";

    //Content
}());  //<<<<-------APP stops here at build

这种情况经常发生在我注入到我的模块中的常见 angular 库以及我自己的一些未注入到模块中的 js 文件中。这是我的模块:

var mgmtAppModule = angular.module('mgmtAppModule', ['ionic', 'ngResource',  'ngMaterial', 'ngCookies'])

visual studio.

的更新版本的 cordova 解决了这个问题