VSCode debug breakpoint - nodejs

185 views Asked by At

Why does debugger stop at RAPIDClient in /var/runtime/index.js everytime, how can it be made go through that point without having to press F5 everytime. Basically, I want the debugger to stop at only my breakpoints.

/**
 * Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.
 *
 * This module is the bootstrap entrypoint. It establishes the top-level event
 * listeners and loads the user's code.
 */

"use strict";

const RAPIDClient = require("./RAPIDClient.js");
const Runtime = require("./Runtime.js");
const UserFunction = require("./UserFunction.js");
const Errors = require("./Errors.js");
const BeforeExitListener = require("./BeforeExitListener.js");
0

There are 0 answers