From 37f81cdf4d164035e3ac846a841267f32f7633a2 Mon Sep 17 00:00:00 2001 From: Jack Willis-Craig <4758854+szdc@users.noreply.github.com> Date: Tue, 11 Dec 2018 22:46:32 +1000 Subject: [PATCH] fix: set the baseUrl so tsc knows where to find modules (#62) --- tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tsconfig.json b/tsconfig.json index 992ffa2..928f0a7 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,6 +1,7 @@ { "compilerOptions": { "allowSyntheticDefaultImports": false, + "baseUrl": "./lib", "declaration": true, "experimentalDecorators": true, "lib": ["es6"],