From 72575ce2a48077a6efaa1a8a56d0d41cfab31ead Mon Sep 17 00:00:00 2001 From: mmcwilliams Date: Thu, 21 Mar 2019 14:55:52 -0400 Subject: [PATCH] Update tsconfig to use ./lib as a reference --- tsconfig.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index cd5b18a..2e72c95 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -7,8 +7,12 @@ "moduleResolution": "node", "sourceMap": true, "removeComments" : false, + "baseUrl" : "lib", "outDir": "./lib/", - "rootDir" : "./src/" + "rootDir" : "./src/", + "paths" : { + "log" : ["./lib/log"] + } }, "exclude" : [] } \ No newline at end of file