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" } }