From 8bba4112877178f4c407c60c2120c084f1db5080 Mon Sep 17 00:00:00 2001 From: Patrik Oldsberg Date: Wed, 1 Apr 2020 16:53:11 +0200 Subject: [PATCH] Revert "Specifically add types to tsconfig to fix build issue" This reverts commit 76fe4bf14d31ee021950288c0f2becfadb5dca7d. --- packages/cli/tsconfig.json | 2 +- tsconfig.json | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/packages/cli/tsconfig.json b/packages/cli/tsconfig.json index b1883334a3..84b9319b94 100644 --- a/packages/cli/tsconfig.json +++ b/packages/cli/tsconfig.json @@ -1,5 +1,5 @@ { - "extends": "../../tsconfig.json", + "extends": "@spotify/web-scripts/config/tsconfig.json", "include": ["src"], "compilerOptions": { "baseUrl": "src", diff --git a/tsconfig.json b/tsconfig.json index 1c7a020024..25f61cc933 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -5,8 +5,6 @@ "allowJs": true, "noEmit": false, "declarationMap": true, - "incremental": true, - "typeRoots": ["node_modules/@types"], - "types": ["node", "jest"] + "incremental": true } }