We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06fb495 commit fd93afcCopy full SHA for fd93afc
src/index.ts
@@ -793,7 +793,9 @@ export function create(rawOptions: CreateOptions = {}): Service {
793
// Install source map support and read from memory cache.
794
installSourceMapSupport();
795
function installSourceMapSupport() {
796
- (require('@cspotcode/source-map-support') as typeof _sourceMapSupport).install({
+ const sourceMapSupport =
797
+ require('@cspotcode/source-map-support') as typeof _sourceMapSupport;
798
+ sourceMapSupport.install({
799
environment: 'node',
800
retrieveFile(pathOrUrl: string) {
801
let path = pathOrUrl;
0 commit comments