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

Commit

Permalink
fix(sourcemaps): inline sourcemaps (#89)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
filipesilva authored and wardbell committed Jan 14, 2017
1 parent 75185eb commit 92bebf3
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion http-status-codes.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion in-memory-backend.service.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion in-memory-web-api.module.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion index.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tsconfig.json
Expand Up @@ -4,7 +4,7 @@
"module": "es2015",
"moduleResolution": "node",
"sourceMap": true,
"sourceRoot": "./src",
"inlineSources": true,
"declaration": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
Expand Down

0 comments on commit 92bebf3

Please sign in to comment.