未捕获的参考错误:在运行应用程序时未将模块定义为角度7

时间:2019-06-21 06:22:11

标签: angular

我最近创建了一个带有angular 7前端和c#后端的应用程序,尽管该应用程序可以运行,但在控制台中却出现此错误。

Sources Error

Console Error

我的tsconfig.json配置为:

{ "compileOnSave": true, "compilerOptions": { "target": "es6", "module": "commonjs", "moduleResolution": "node", "sourceMap": true, "emitDecoratorMetadata": true, "experimentalDecorators": true, "removeComments": false, "noImplicitAny": false, "typeRoots": [ "node_modules/@types" ], "types": [ "core-js" ] } } 

这是控制台错误:

scripts.0854bee9c076f00a7812.js:1 Uncaught ReferenceError: module is not defined
    at scripts.0854bee9c076f00a7812.js:1
(anonymous) @ scripts.0854bee9c076f00a7812.js:1

这是指示已捕获错误的代码部分:

 module.exports = function(e, t, n) {
        if ("function" == typeof Array.prototype.findIndex)
            return e.findIndex(t, n);
        if ("function" != typeof t)
            throw new TypeError("predicate must be a function");
        var i = Object(e)
          , r = i.length;
        if (0 === r)
            return -1;
        for (var o = 0; o < r; o++)
            if (t.call(n, i[o], o, i))
                return o;
        return -1
    }

希望对您有帮助

任何想法在这里可能出什么问题,而我却收到此错误? 预先谢谢你。

0 个答案:

没有答案