查找导致调试节点+ nestjs(v8 :: internal :: compiler :: Type :: Negative31)的应用程序崩溃的原因

时间:2019-05-20 08:44:17

标签: node.js debugging nestjs

我正在开发一个已经完成的nestjs应用程序,当我进行一些更改时,有时会出现这种错误:

Debugger attached.
 1: v8::internal::compiler::Type::Negative31
 2: v8::internal::wasm::SignatureMap::Find
 3: v8::internal::Builtins::CallableFor
 4: v8::internal::Builtins::CallableFor
 5: v8::internal::Builtins::CallableFor
 6: 000003FF807043C1

没有任何原因的信息,通常我放弃所做的更改,然后应用程序再次恢复正常运行,但是这次我进行了许多更改,因此在处理此错误时遇到了麻烦,是否有任何冗长的模式在调试与Nestjs的交易?

这是我的配置:

    {
        "type": "node",
        "request": "launch",
        "name": "debug",
        "args": [
            "src/server.ts"
        ],
        "runtimeArgs": [
            "-r",
            "ts-node/register"
        ],
        "smartStep": true,
        "protocol": "inspector",
        "skipFiles": [
            "node_modules/**/*"
        ]
    },

0 个答案:

没有答案