From 6093452eb6680163ec2a0ad5872b2e730865652c Mon Sep 17 00:00:00 2001 From: Jody Heavener Date: Wed, 29 Apr 2020 20:50:44 -0400 Subject: [PATCH] fix(auth server): reference fxa-shared types in tsconfig addresses an issue that prevents CI from building --- packages/fxa-auth-server/tsconfig.json | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/packages/fxa-auth-server/tsconfig.json b/packages/fxa-auth-server/tsconfig.json index 4fcf444ccd..514c6f21e4 100644 --- a/packages/fxa-auth-server/tsconfig.json +++ b/packages/fxa-auth-server/tsconfig.json @@ -14,11 +14,9 @@ "allowSyntheticDefaultImports": true, "noImplicitReturns": true, "noFallthroughCasesInSwitch": true, - "types": [ - "node" - ], "typeRoots": [ "./types", + "../fxa-shared/types", "node_modules/@types" ] },