From d43414d68742e7b78500a6361dbb21fdedc20ece Mon Sep 17 00:00:00 2001 From: nikek Date: Wed, 1 Apr 2020 11:30:36 +0200 Subject: [PATCH] put shared tsconfig in root config --- packages/cli/templates/default-plugin/tsconfig.json | 5 +---- plugins/home-page/tsconfig.json | 5 +---- plugins/welcome/tsconfig.json | 5 +---- tsconfig.json | 3 ++- 4 files changed, 5 insertions(+), 13 deletions(-) diff --git a/packages/cli/templates/default-plugin/tsconfig.json b/packages/cli/templates/default-plugin/tsconfig.json index 4721441081..596e2cf729 100644 --- a/packages/cli/templates/default-plugin/tsconfig.json +++ b/packages/cli/templates/default-plugin/tsconfig.json @@ -1,7 +1,4 @@ { "extends": "../../tsconfig.json", - "include": ["src"], - "compilerOptions": { - "module": "es6" - } + "include": ["src"] } diff --git a/plugins/home-page/tsconfig.json b/plugins/home-page/tsconfig.json index 4721441081..596e2cf729 100644 --- a/plugins/home-page/tsconfig.json +++ b/plugins/home-page/tsconfig.json @@ -1,7 +1,4 @@ { "extends": "../../tsconfig.json", - "include": ["src"], - "compilerOptions": { - "module": "es6" - } + "include": ["src"] } diff --git a/plugins/welcome/tsconfig.json b/plugins/welcome/tsconfig.json index 4721441081..596e2cf729 100644 --- a/plugins/welcome/tsconfig.json +++ b/plugins/welcome/tsconfig.json @@ -1,7 +1,4 @@ { "extends": "../../tsconfig.json", - "include": ["src"], - "compilerOptions": { - "module": "es6" - } + "include": ["src"] } diff --git a/tsconfig.json b/tsconfig.json index 25f61cc933..abb10087ca 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -5,6 +5,7 @@ "allowJs": true, "noEmit": false, "declarationMap": true, - "incremental": true + "incremental": true, + "module": "es6" } }