Apollo Client on backend: stack trace never shows app related lines

Hi all,

I use @apollo/client 3.x on my NodeJS backend. I write my backend in Typescript, and compile it to javascript using tsc. Here is my tsconfig.production.json:

{
  "compilerOptions": {
    "target": "es2018",
    "module": "commonjs",
    "emitDecoratorMetadata": true,
    "experimentalDecorators": true,
    "esModuleInterop": true,
    "moduleResolution": "node",
    "resolveJsonModule": true,
    "isolatedModules": true,
    "lib": ["dom", "dom.iterable", "esnext", "esnext.asynciterable"],
    "types": ["reflect-metadata"],
    "sourceMap": true,
    "inlineSources": true,
    "sourceRoot": "/",
    "outDir": "../dist",
    "noEmit": false,
    "noEmitHelpers": true,
    "importHelpers": true
  },
  "extends": "./tsconfig.json"
}

Whenever I receive an error, during a graphql query or mutation, my stack trace looks like this:

Error: Response not successful: Received status code 500
  File "app:///../node_modules/@apollo/client/errors/errors.cjs.js", line 34, col 28, in new ApolloError
    var _this = _super.call(this, errorMessage) || this;
  File "app:///../node_modules/@apollo/client/core/core.cjs.js", line 1593, col 19, in null.<anonymous>
    : new errors.ApolloError({ networkError: networkError });
  File "app:///../node_modules/@apollo/client/utilities/utilities.cjs.js", line 965, col 53, in both
    var both = function () { return examiner(arg); };
  File "app:///../node_modules/@apollo/client/utilities/utilities.cjs.js", line 958, col 72, in null.<anonymous>
    return new Promise(function (resolve) { return resolve(callback()); });
  ?, in new Promise
  File "app:///../node_modules/@apollo/client/utilities/utilities.cjs.js", line 958, col 24, in Object.then
    return new Promise(function (resolve) { return resolve(callback()); });
  File "app:///../node_modules/@apollo/client/utilities/utilities.cjs.js", line 966, col 49, in Object.error
    promiseQueue = promiseQueue.then(both, both).then(function (result) {
  File "app:///../node_modules/zen-observable/lib/Observable.js", line 140, col 18, in notifySubscription
    if (m) m.call(observer, value);else throw value;
  File "app:///../node_modules/zen-observable/lib/Observable.js", line 179, col 3, in onNotify
    notifySubscription(subscription, type, value);
  File "app:///../node_modules/zen-observable/lib/Observable.js", line 240, col 7, in SubscriptionObserver.error
    onNotify(this._subscription, 'error', value);

Not a single line referencing where it was called in my app. What can I do in order to see where this query/mutation was called from in my app?