Skip to content
This repository was archived by the owner on Feb 26, 2024. It is now read-only.

Commit 92bebf3

Browse files
filipesilvawardbell
authored andcommitted
fix(sourcemaps): inline sourcemaps (#89)
Closes #43 Currently sourcemaps are pointing to an absolute location based on the machine that built the project. This PR changes that to a relative location, and also inlines the sources. Inlining should be done since we do not publish the TS files.
1 parent 75185eb commit 92bebf3

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

http-status-codes.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

in-memory-backend.service.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

in-memory-web-api.module.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"module": "es2015",
55
"moduleResolution": "node",
66
"sourceMap": true,
7-
"sourceRoot": "./src",
7+
"inlineSources": true,
88
"declaration": true,
99
"emitDecoratorMetadata": true,
1010
"experimentalDecorators": true,

0 commit comments

Comments
 (0)