From 0ccd259f043e5351db216526dc6ae76205b150b4 Mon Sep 17 00:00:00 2001 From: marshall007 Date: Tue, 6 Jun 2017 14:43:09 -0500 Subject: [PATCH] @types/bull: fix `typeRoots` and `baseUrl` for v2 --- types/bull/tsconfig.json | 8 ++------ types/bull/v2/tsconfig.json | 10 +++------- 2 files changed, 5 insertions(+), 13 deletions(-) diff --git a/types/bull/tsconfig.json b/types/bull/tsconfig.json index 56a53750f3..0751a977c1 100644 --- a/types/bull/tsconfig.json +++ b/types/bull/tsconfig.json @@ -1,16 +1,12 @@ { "compilerOptions": { "module": "commonjs", - "lib": [ - "es6" - ], + "lib": [ "es6" ], "noImplicitAny": true, "noImplicitThis": true, "strictNullChecks": false, "baseUrl": "../", - "typeRoots": [ - "../" - ], + "typeRoots": [ "../" ], "types": [], "noEmit": true, "forceConsistentCasingInFileNames": true diff --git a/types/bull/v2/tsconfig.json b/types/bull/v2/tsconfig.json index 2948048b1e..12445fc199 100644 --- a/types/bull/v2/tsconfig.json +++ b/types/bull/v2/tsconfig.json @@ -1,16 +1,12 @@ { "compilerOptions": { "module": "commonjs", - "lib": [ - "es6" - ], + "lib": [ "es6" ], "noImplicitAny": true, "noImplicitThis": true, "strictNullChecks": false, - "baseUrl": "../", - "typeRoots": [ - "../" - ], + "baseUrl": "../../", + "typeRoots": [ "../../" ], "types": [], "paths": { "bull": [ "bull/v2" ],