From 8500b2dd36dd2d313f453c46bf4b6a6472d35977 Mon Sep 17 00:00:00 2001 From: Alexandre Kirszenberg Date: Sun, 24 Feb 2019 14:28:56 +0100 Subject: [PATCH] Inline sources contents in source map files --- CHANGELOG.md | 2 ++ tsconfig.json | 1 + 2 files changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 17defd12d..7ca8ab452 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,8 @@ [@renatorib](https://github.com/renatorib) in [#761](https://github.com/apollographql/subscriptions-transport-ws/pull/761) - Destructure the correct error object in `MessageTypes.GQL_START`.
[@gregbty](https://github.com/gregbty) in [#588](https://github.com/apollographql/subscriptions-transport-ws/pull/588) +- Inline source in sourcemap files to fix broken source lookups.
+ [@alexkirsz](https://github.com/alexkirsz) in [#513](https://github.com/apollographql/subscriptions-transport-ws/pull/513) ### New Features diff --git a/tsconfig.json b/tsconfig.json index d801f812a..4fee7fea2 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -4,6 +4,7 @@ "module": "commonjs", "moduleResolution": "node", "sourceMap": true, + "inlineSources": true, "noImplicitAny": true, "rootDir": "./src", "outDir": "./dist",