From faa49a873a6d5690f7f7ccc4bfe4de340e28949d Mon Sep 17 00:00:00 2001 From: Ivan Date: Wed, 26 Jul 2017 12:13:02 +0300 Subject: [PATCH] [BUG] Middleware is loading .js.map typescript maps instead of .js #255 https://github.com/strongloop/loopback-boot/issues/255 --- lib/utils.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/utils.js b/lib/utils.js index 0035183..100112c 100644 --- a/lib/utils.js +++ b/lib/utils.js @@ -101,6 +101,7 @@ function resolveRelativePaths(relativePaths, appRootDir) { function getExcludedExtensions() { return { '.json': '.json', + '.map': '.map', '.node': 'node', }; }