diff --git a/addons/a11y/tsconfig.json b/addons/a11y/tsconfig.json index f5ab5293de2..2515dbbf7b9 100644 --- a/addons/a11y/tsconfig.json +++ b/addons/a11y/tsconfig.json @@ -2,7 +2,9 @@ "extends": "../../tsconfig.json", "compilerOptions": { "rootDir": "./src", - "types": ["jest"], + "types": [ + "jest" + ], "forceConsistentCasingInFileNames": true, "strict": true, "noUnusedLocals": true, @@ -10,7 +12,9 @@ "noImplicitReturns": true, "noFallthroughCasesInSwitch": true }, - "include": ["src/**/*"], + "include": [ + "src/**/*" + ], "exclude": [ "src/**/*.test.*", "src/**/tests/**/*", @@ -19,4 +23,4 @@ "src/**/*.mockdata.*", "src/**/__testfixtures__/**" ] -} +} \ No newline at end of file diff --git a/addons/actions/tsconfig.json b/addons/actions/tsconfig.json index 3fe5e6e0dff..5710f29a01c 100644 --- a/addons/actions/tsconfig.json +++ b/addons/actions/tsconfig.json @@ -4,7 +4,9 @@ "rootDir": "./src", "types": ["jest"] }, - "include": ["src/**/*"], + "include": [ + "src/**/*" +], "exclude": [ "src/**/*.test.*", "src/**/tests/**/*", diff --git a/addons/backgrounds/tsconfig.json b/addons/backgrounds/tsconfig.json index 61cbbd6356c..eaa5f4d3928 100644 --- a/addons/backgrounds/tsconfig.json +++ b/addons/backgrounds/tsconfig.json @@ -3,7 +3,9 @@ "compilerOptions": { "rootDir": "./src" }, - "include": ["src/**/*"], + "include": [ + "src/**/*" +], "exclude": [ "src/**/*.test.*", "src/**/tests/**/*", diff --git a/addons/controls/tsconfig.json b/addons/controls/tsconfig.json index b9bb7eacdbd..c91cd3a2598 100644 --- a/addons/controls/tsconfig.json +++ b/addons/controls/tsconfig.json @@ -4,7 +4,9 @@ "rootDir": "./src", "types": ["jest", "node"] }, - "include": ["src/**/*"], + "include": [ + "src/**/*" +], "exclude": [ "src/**/*.test.*", "src/**/tests/**/*", diff --git a/addons/docs/tsconfig.json b/addons/docs/tsconfig.json index 0858899bf69..140802dc44f 100644 --- a/addons/docs/tsconfig.json +++ b/addons/docs/tsconfig.json @@ -5,7 +5,9 @@ "skipLibCheck": true, "types": ["jest", "node"] }, - "include": ["src/**/*"], + "include": [ + "src/**/*" +], "exclude": [ "src/**/*.test.*", "src/**/__tests__/**/*", diff --git a/addons/essentials/tsconfig.json b/addons/essentials/tsconfig.json index b9bb7eacdbd..c91cd3a2598 100644 --- a/addons/essentials/tsconfig.json +++ b/addons/essentials/tsconfig.json @@ -4,7 +4,9 @@ "rootDir": "./src", "types": ["jest", "node"] }, - "include": ["src/**/*"], + "include": [ + "src/**/*" +], "exclude": [ "src/**/*.test.*", "src/**/tests/**/*", diff --git a/addons/interactions/tsconfig.json b/addons/interactions/tsconfig.json index 61cbbd6356c..eaa5f4d3928 100644 --- a/addons/interactions/tsconfig.json +++ b/addons/interactions/tsconfig.json @@ -3,7 +3,9 @@ "compilerOptions": { "rootDir": "./src" }, - "include": ["src/**/*"], + "include": [ + "src/**/*" +], "exclude": [ "src/**/*.test.*", "src/**/tests/**/*", diff --git a/addons/jest/tsconfig.json b/addons/jest/tsconfig.json index 3fe5e6e0dff..5710f29a01c 100644 --- a/addons/jest/tsconfig.json +++ b/addons/jest/tsconfig.json @@ -4,7 +4,9 @@ "rootDir": "./src", "types": ["jest"] }, - "include": ["src/**/*"], + "include": [ + "src/**/*" +], "exclude": [ "src/**/*.test.*", "src/**/tests/**/*", diff --git a/addons/links/tsconfig.json b/addons/links/tsconfig.json index 6a106413ed1..faed22587c1 100644 --- a/addons/links/tsconfig.json +++ b/addons/links/tsconfig.json @@ -4,7 +4,9 @@ "rootDir": "./src", "types": ["@testing-library/jest-dom"] }, - "include": ["src/**/*"], + "include": [ + "src/**/*" +], "exclude": [ "src/**/*.test.*", "src/**/tests/**/*", diff --git a/addons/measure/tsconfig.json b/addons/measure/tsconfig.json index 61cbbd6356c..eaa5f4d3928 100644 --- a/addons/measure/tsconfig.json +++ b/addons/measure/tsconfig.json @@ -3,7 +3,9 @@ "compilerOptions": { "rootDir": "./src" }, - "include": ["src/**/*"], + "include": [ + "src/**/*" +], "exclude": [ "src/**/*.test.*", "src/**/tests/**/*", diff --git a/addons/outline/tsconfig.json b/addons/outline/tsconfig.json index 61cbbd6356c..eaa5f4d3928 100644 --- a/addons/outline/tsconfig.json +++ b/addons/outline/tsconfig.json @@ -3,7 +3,9 @@ "compilerOptions": { "rootDir": "./src" }, - "include": ["src/**/*"], + "include": [ + "src/**/*" +], "exclude": [ "src/**/*.test.*", "src/**/tests/**/*", diff --git a/addons/storyshots/storyshots-puppeteer/tsconfig.json b/addons/storyshots/storyshots-puppeteer/tsconfig.json index a5612ccd5eb..963abf1d80a 100644 --- a/addons/storyshots/storyshots-puppeteer/tsconfig.json +++ b/addons/storyshots/storyshots-puppeteer/tsconfig.json @@ -6,6 +6,8 @@ "types": ["node"], "declaration": true }, - "include": ["src/**/*"], + "include": [ + "src/**/*" +], "exclude": ["src/__tests__/**/*"] } diff --git a/addons/storysource/tsconfig.json b/addons/storysource/tsconfig.json index ec610830bcd..f63f1ada7c8 100644 --- a/addons/storysource/tsconfig.json +++ b/addons/storysource/tsconfig.json @@ -4,7 +4,9 @@ "rootDir": "./src", "skipLibCheck": true }, - "include": ["src/**/*"], + "include": [ + "src/**/*" +], "exclude": [ "src/**/*.test.*", "src/**/tests/**/*", diff --git a/addons/toolbars/tsconfig.json b/addons/toolbars/tsconfig.json index 3fe5e6e0dff..5710f29a01c 100644 --- a/addons/toolbars/tsconfig.json +++ b/addons/toolbars/tsconfig.json @@ -4,7 +4,9 @@ "rootDir": "./src", "types": ["jest"] }, - "include": ["src/**/*"], + "include": [ + "src/**/*" +], "exclude": [ "src/**/*.test.*", "src/**/tests/**/*", diff --git a/addons/viewport/tsconfig.json b/addons/viewport/tsconfig.json index 61cbbd6356c..eaa5f4d3928 100644 --- a/addons/viewport/tsconfig.json +++ b/addons/viewport/tsconfig.json @@ -3,7 +3,9 @@ "compilerOptions": { "rootDir": "./src" }, - "include": ["src/**/*"], + "include": [ + "src/**/*" +], "exclude": [ "src/**/*.test.*", "src/**/tests/**/*", diff --git a/app/angular/tsconfig.json b/app/angular/tsconfig.json index ae8dec9db66..93648856511 100644 --- a/app/angular/tsconfig.json +++ b/app/angular/tsconfig.json @@ -2,7 +2,8 @@ "extends": "../../tsconfig.json", "compileOnSave": false, "compilerOptions": { - "module": "ES2020", + "target": "ES2020", + "module": "CommonJS", "outDir": "dist", "types": ["node"], "rootDir": "./src", @@ -10,5 +11,8 @@ "resolveJsonModule": true, "allowJs": true }, - "include": ["src/**/*", "src/**/*.json"] + "include": [ + "src/**/*", + "src/**/*.json" + ] } diff --git a/app/angular/tsconfig.spec.json b/app/angular/tsconfig.spec.json index d5294566259..bda9053b0cf 100644 --- a/app/angular/tsconfig.spec.json +++ b/app/angular/tsconfig.spec.json @@ -1,9 +1,20 @@ { "extends": "./tsconfig.json", "compilerOptions": { - "types": ["webpack-env", "jest", "node"], - "typeRoots": ["../../node_modules/@types", "node_modules/@types"], + "types": [ + "webpack-env", + "jest", + "node" + ], + "typeRoots": [ + "../../node_modules/@types", + "node_modules/@types" + ], "allowJs": true }, - "include": ["**/*.test.ts", "**/*.d.ts", "setup-jest.ts"] + "include": [ + "**/*.test.ts", + "**/*.d.ts", + "setup-jest.ts" + ] } diff --git a/app/ember/tsconfig.json b/app/ember/tsconfig.json index d698e3cf4dd..7ad9d119bb9 100644 --- a/app/ember/tsconfig.json +++ b/app/ember/tsconfig.json @@ -5,6 +5,11 @@ "types": ["node"], "resolveJsonModule": true }, - "include": ["src/**/*", "package.json"], - "exclude": ["src/**/*.test.*"] + "include": [ + "src/**/*", + "package.json" + ], + "exclude": [ + "src/**/*.test.*" + ] } diff --git a/app/html/tsconfig.json b/app/html/tsconfig.json index 4cd92b3f6ed..52b1a08c3ed 100644 --- a/app/html/tsconfig.json +++ b/app/html/tsconfig.json @@ -4,6 +4,8 @@ "rootDir": "./src", "types": ["node"] }, - "include": ["src/**/*"], + "include": [ + "src/**/*" +], "exclude": ["src/**/*.test.*", "src/__tests__/**/*"] } diff --git a/app/preact/tsconfig.json b/app/preact/tsconfig.json index aae6d1d3e37..941324c34ff 100644 --- a/app/preact/tsconfig.json +++ b/app/preact/tsconfig.json @@ -5,6 +5,8 @@ "types": ["node"], "resolveJsonModule": true }, - "include": ["src/**/*"], + "include": [ + "src/**/*" +], "exclude": ["src/**/*.test.*"] } diff --git a/app/react/tsconfig.json b/app/react/tsconfig.json index 534e4ddd108..a2f58bc80b7 100644 --- a/app/react/tsconfig.json +++ b/app/react/tsconfig.json @@ -5,6 +5,8 @@ "types": ["node"], "resolveJsonModule": true }, - "include": ["src/**/*"], + "include": [ + "src/**/*" +], "exclude": ["src/**/*.test.*", "src/**/__testfixtures__/**"] } diff --git a/app/server/tsconfig.json b/app/server/tsconfig.json index 58b6d0df246..503c012bb48 100644 --- a/app/server/tsconfig.json +++ b/app/server/tsconfig.json @@ -4,6 +4,8 @@ "rootDir": "./src", "types": ["node"] }, - "include": ["src/**/*"], + "include": [ + "src/**/*" +], "exclude": ["src/__tests__/**/*"] } diff --git a/app/svelte/tsconfig.json b/app/svelte/tsconfig.json index aae6d1d3e37..941324c34ff 100644 --- a/app/svelte/tsconfig.json +++ b/app/svelte/tsconfig.json @@ -5,6 +5,8 @@ "types": ["node"], "resolveJsonModule": true }, - "include": ["src/**/*"], + "include": [ + "src/**/*" +], "exclude": ["src/**/*.test.*"] } diff --git a/app/vue/tsconfig.json b/app/vue/tsconfig.json index aae6d1d3e37..941324c34ff 100644 --- a/app/vue/tsconfig.json +++ b/app/vue/tsconfig.json @@ -5,6 +5,8 @@ "types": ["node"], "resolveJsonModule": true }, - "include": ["src/**/*"], + "include": [ + "src/**/*" +], "exclude": ["src/**/*.test.*"] } diff --git a/app/vue3/tsconfig.json b/app/vue3/tsconfig.json index 5978a9c3956..a495dacd67c 100644 --- a/app/vue3/tsconfig.json +++ b/app/vue3/tsconfig.json @@ -6,6 +6,8 @@ "resolveJsonModule": true, "skipLibCheck": true }, - "include": ["src/**/*"], + "include": [ + "src/**/*" +], "exclude": ["src/**/*.test.*"] } diff --git a/app/web-components/tsconfig.json b/app/web-components/tsconfig.json index 4cd92b3f6ed..52b1a08c3ed 100644 --- a/app/web-components/tsconfig.json +++ b/app/web-components/tsconfig.json @@ -4,6 +4,8 @@ "rootDir": "./src", "types": ["node"] }, - "include": ["src/**/*"], + "include": [ + "src/**/*" +], "exclude": ["src/**/*.test.*", "src/__tests__/**/*"] } diff --git a/examples/cra-ts-essentials/tsconfig.json b/examples/cra-ts-essentials/tsconfig.json index b2e81eee30b..e6a4c8a8a56 100644 --- a/examples/cra-ts-essentials/tsconfig.json +++ b/examples/cra-ts-essentials/tsconfig.json @@ -6,11 +6,11 @@ "experimentalDecorators": true, "emitDecoratorMetadata": true, "jsx": "react", + "target": "ES2020", "module": "CommonJS", "skipLibCheck": true, "allowSyntheticDefaultImports": true, "esModuleInterop": true, - "target": "ES2020", "types": [ "jest", "node" diff --git a/examples/cra-ts-kitchen-sink/tsconfig.json b/examples/cra-ts-kitchen-sink/tsconfig.json index 0ea2acb6541..e698ac24418 100644 --- a/examples/cra-ts-kitchen-sink/tsconfig.json +++ b/examples/cra-ts-kitchen-sink/tsconfig.json @@ -6,11 +6,11 @@ "experimentalDecorators": true, "emitDecoratorMetadata": true, "jsx": "react", - "module": "commonjs", + "target": "ES2020", + "module": "CommonJS", "skipLibCheck": true, "allowSyntheticDefaultImports": true, "esModuleInterop": true, - "target": "ES2020", "types": [ "jest", "node" diff --git a/examples/external-docs/tsconfig.json b/examples/external-docs/tsconfig.json index dc08a84bc28..27bfd851900 100644 --- a/examples/external-docs/tsconfig.json +++ b/examples/external-docs/tsconfig.json @@ -4,8 +4,9 @@ "esModuleInterop": true, "jsx": "react", "skipLibCheck": true, + "target": "ES2020", + "module": "CommonJS", "strict": true, - "target": "es5", "lib": [ "dom", "esnext" @@ -14,11 +15,12 @@ "allowSyntheticDefaultImports": true, "forceConsistentCasingInFileNames": true, "noFallthroughCasesInSwitch": true, - "module": "esnext", "moduleResolution": "node", "resolveJsonModule": true, "isolatedModules": true, "noEmit": true }, - "include": [ "src/*"] + "include": [ + "src/*" + ] } diff --git a/examples/react-ts/tsconfig.json b/examples/react-ts/tsconfig.json index 2a9856e4b65..ee8a36bc00e 100644 --- a/examples/react-ts/tsconfig.json +++ b/examples/react-ts/tsconfig.json @@ -1,6 +1,8 @@ { "compilerOptions": { "baseUrl": ".", + "target": "ES2020", + "module": "CommonJS", "esModuleInterop": true, "jsx": "preserve", "skipLibCheck": true, diff --git a/examples/svelte-kitchen-sink/tsconfig.json b/examples/svelte-kitchen-sink/tsconfig.json index c389dd4965f..7ffab78c40b 100644 --- a/examples/svelte-kitchen-sink/tsconfig.json +++ b/examples/svelte-kitchen-sink/tsconfig.json @@ -1,6 +1,8 @@ { "compilerOptions": { "baseUrl": ".", + "target": "ES2020", + "module": "CommonJS", "esModuleInterop": true, "skipLibCheck": true, "strict": true diff --git a/examples/vue-3-cli/tsconfig.json b/examples/vue-3-cli/tsconfig.json index 721be65f1a2..1bdbcc7cfd0 100644 --- a/examples/vue-3-cli/tsconfig.json +++ b/examples/vue-3-cli/tsconfig.json @@ -1,7 +1,7 @@ { "compilerOptions": { - "target": "esnext", - "module": "commonjs", + "target": "ES2020", + "module": "CommonJS", "strict": true, "jsx": "preserve", "importHelpers": true, @@ -14,8 +14,21 @@ "paths": { "@/*": ["src/*"] }, - "lib": ["esnext", "dom", "dom.iterable", "scripthost"] + "lib": [ + "esnext", + "dom", + "dom.iterable", + "scripthost" + ] }, - "include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue", "tests/**/*.ts", "tests/**/*.tsx"], - "exclude": ["node_modules"] + "include": [ + "src/**/*.ts", + "src/**/*.tsx", + "src/**/*.vue", + "tests/**/*.ts", + "tests/**/*.tsx" + ], + "exclude": [ + "node_modules" + ] } diff --git a/examples/vue-cli/tsconfig.json b/examples/vue-cli/tsconfig.json index 82327aa7a93..fbc7c9018b8 100644 --- a/examples/vue-cli/tsconfig.json +++ b/examples/vue-cli/tsconfig.json @@ -1,7 +1,7 @@ { "compilerOptions": { - "target": "esnext", - "module": "esnext", + "target": "ES2020", + "module": "CommonJS", "strict": true, "jsx": "preserve", "importHelpers": true, diff --git a/examples/web-components-kitchen-sink/tsconfig.json b/examples/web-components-kitchen-sink/tsconfig.json index b0d8f2a3a9e..59f414936dd 100644 --- a/examples/web-components-kitchen-sink/tsconfig.json +++ b/examples/web-components-kitchen-sink/tsconfig.json @@ -1,7 +1,7 @@ { "compilerOptions": { - "target": "esnext", - "module": "esnext", + "target": "ES2020", + "module": "CommonJS", "strict": true, "moduleResolution": "node", "strictBindCallApply": true, diff --git a/lib/source-loader/tsconfig.json b/lib/source-loader/tsconfig.json index 61cbbd6356c..eaa5f4d3928 100644 --- a/lib/source-loader/tsconfig.json +++ b/lib/source-loader/tsconfig.json @@ -3,7 +3,9 @@ "compilerOptions": { "rootDir": "./src" }, - "include": ["src/**/*"], + "include": [ + "src/**/*" +], "exclude": [ "src/**/*.test.*", "src/**/tests/**/*", diff --git a/lib/ui/tsconfig.json b/lib/ui/tsconfig.json index 5ac15d35c87..4da1e465b8c 100644 --- a/lib/ui/tsconfig.json +++ b/lib/ui/tsconfig.json @@ -3,7 +3,9 @@ "compilerOptions": { "lib": ["ESNext", "DOM", "DOM.Iterable"] }, - "include": ["src/**/*"], + "include": [ + "src/**/*" +], "exclude": [ "src/**/*.test.*", "src/**/tests/**/*", diff --git a/presets/html-webpack/tsconfig.json b/presets/html-webpack/tsconfig.json index 4cd92b3f6ed..52b1a08c3ed 100644 --- a/presets/html-webpack/tsconfig.json +++ b/presets/html-webpack/tsconfig.json @@ -4,6 +4,8 @@ "rootDir": "./src", "types": ["node"] }, - "include": ["src/**/*"], + "include": [ + "src/**/*" +], "exclude": ["src/**/*.test.*", "src/__tests__/**/*"] } diff --git a/presets/preact-webpack/tsconfig.json b/presets/preact-webpack/tsconfig.json index aae6d1d3e37..941324c34ff 100644 --- a/presets/preact-webpack/tsconfig.json +++ b/presets/preact-webpack/tsconfig.json @@ -5,6 +5,8 @@ "types": ["node"], "resolveJsonModule": true }, - "include": ["src/**/*"], + "include": [ + "src/**/*" +], "exclude": ["src/**/*.test.*"] } diff --git a/presets/react-webpack/tsconfig.json b/presets/react-webpack/tsconfig.json index 534e4ddd108..a2f58bc80b7 100644 --- a/presets/react-webpack/tsconfig.json +++ b/presets/react-webpack/tsconfig.json @@ -5,6 +5,8 @@ "types": ["node"], "resolveJsonModule": true }, - "include": ["src/**/*"], + "include": [ + "src/**/*" +], "exclude": ["src/**/*.test.*", "src/**/__testfixtures__/**"] } diff --git a/presets/server-webpack/tsconfig.json b/presets/server-webpack/tsconfig.json index 58b6d0df246..503c012bb48 100644 --- a/presets/server-webpack/tsconfig.json +++ b/presets/server-webpack/tsconfig.json @@ -4,6 +4,8 @@ "rootDir": "./src", "types": ["node"] }, - "include": ["src/**/*"], + "include": [ + "src/**/*" +], "exclude": ["src/__tests__/**/*"] } diff --git a/presets/svelte-webpack/tsconfig.json b/presets/svelte-webpack/tsconfig.json index aae6d1d3e37..941324c34ff 100644 --- a/presets/svelte-webpack/tsconfig.json +++ b/presets/svelte-webpack/tsconfig.json @@ -5,6 +5,8 @@ "types": ["node"], "resolveJsonModule": true }, - "include": ["src/**/*"], + "include": [ + "src/**/*" +], "exclude": ["src/**/*.test.*"] } diff --git a/presets/vue-webpack/tsconfig.json b/presets/vue-webpack/tsconfig.json index 4812b8f1a9f..e8b8b3aa69f 100644 --- a/presets/vue-webpack/tsconfig.json +++ b/presets/vue-webpack/tsconfig.json @@ -6,6 +6,8 @@ "skipLibCheck": true, "resolveJsonModule": true }, - "include": ["src/**/*"], + "include": [ + "src/**/*" +], "exclude": ["src/**/*.test.*"] } diff --git a/presets/vue3-webpack/tsconfig.json b/presets/vue3-webpack/tsconfig.json index 5978a9c3956..a495dacd67c 100644 --- a/presets/vue3-webpack/tsconfig.json +++ b/presets/vue3-webpack/tsconfig.json @@ -6,6 +6,8 @@ "resolveJsonModule": true, "skipLibCheck": true }, - "include": ["src/**/*"], + "include": [ + "src/**/*" +], "exclude": ["src/**/*.test.*"] } diff --git a/presets/web-components-webpack/tsconfig.json b/presets/web-components-webpack/tsconfig.json index 4cd92b3f6ed..52b1a08c3ed 100644 --- a/presets/web-components-webpack/tsconfig.json +++ b/presets/web-components-webpack/tsconfig.json @@ -4,6 +4,8 @@ "rootDir": "./src", "types": ["node"] }, - "include": ["src/**/*"], + "include": [ + "src/**/*" +], "exclude": ["src/**/*.test.*", "src/__tests__/**/*"] } diff --git a/renderers/html/tsconfig.json b/renderers/html/tsconfig.json index 6f7bff08af6..d8df80f0f2c 100644 --- a/renderers/html/tsconfig.json +++ b/renderers/html/tsconfig.json @@ -4,6 +4,8 @@ "rootDir": "./src", "types": [] }, - "include": ["src/**/*"], + "include": [ + "src/**/*" +], "exclude": ["src/**/*.test.*", "src/__tests__/**/*"] } diff --git a/renderers/preact/tsconfig.json b/renderers/preact/tsconfig.json index b704f2ec95c..ea0aa37afb7 100644 --- a/renderers/preact/tsconfig.json +++ b/renderers/preact/tsconfig.json @@ -4,6 +4,8 @@ "rootDir": "./src", "resolveJsonModule": true }, - "include": ["src/**/*"], + "include": [ + "src/**/*" +], "exclude": ["src/**/*.test.*"] } diff --git a/renderers/react/tsconfig.json b/renderers/react/tsconfig.json index eb2b50f62b0..e29350e50b5 100644 --- a/renderers/react/tsconfig.json +++ b/renderers/react/tsconfig.json @@ -4,6 +4,8 @@ "rootDir": "./src", "resolveJsonModule": true }, - "include": ["src/**/*"], + "include": [ + "src/**/*" +], "exclude": ["src/**/*.test.*", "src/**/__testfixtures__/**"] } diff --git a/renderers/server/tsconfig.json b/renderers/server/tsconfig.json index 9b69fbfdaed..8386e96573c 100644 --- a/renderers/server/tsconfig.json +++ b/renderers/server/tsconfig.json @@ -3,6 +3,8 @@ "compilerOptions": { "rootDir": "./src" }, - "include": ["src/**/*"], + "include": [ + "src/**/*" +], "exclude": ["src/__tests__/**/*"] } diff --git a/renderers/svelte/tsconfig.json b/renderers/svelte/tsconfig.json index aae6d1d3e37..941324c34ff 100644 --- a/renderers/svelte/tsconfig.json +++ b/renderers/svelte/tsconfig.json @@ -5,6 +5,8 @@ "types": ["node"], "resolveJsonModule": true }, - "include": ["src/**/*"], + "include": [ + "src/**/*" +], "exclude": ["src/**/*.test.*"] } diff --git a/renderers/vue/tsconfig.json b/renderers/vue/tsconfig.json index b704f2ec95c..ea0aa37afb7 100644 --- a/renderers/vue/tsconfig.json +++ b/renderers/vue/tsconfig.json @@ -4,6 +4,8 @@ "rootDir": "./src", "resolveJsonModule": true }, - "include": ["src/**/*"], + "include": [ + "src/**/*" +], "exclude": ["src/**/*.test.*"] } diff --git a/renderers/vue3/tsconfig.json b/renderers/vue3/tsconfig.json index fa8810ab78a..c05710a0f98 100644 --- a/renderers/vue3/tsconfig.json +++ b/renderers/vue3/tsconfig.json @@ -5,6 +5,8 @@ "resolveJsonModule": true, "skipLibCheck": true }, - "include": ["src/**/*"], + "include": [ + "src/**/*" +], "exclude": ["src/**/*.test.*"] } diff --git a/renderers/web-components/tsconfig.json b/renderers/web-components/tsconfig.json index c4b475a389f..d2aa396c711 100644 --- a/renderers/web-components/tsconfig.json +++ b/renderers/web-components/tsconfig.json @@ -3,6 +3,8 @@ "compilerOptions": { "rootDir": "./src" }, - "include": ["src/**/*"], + "include": [ + "src/**/*" +], "exclude": ["src/**/*.test.*", "src/__tests__/**/*"] } diff --git a/tsconfig.json b/tsconfig.json index fc6fae21f3c..8ff8124d26f 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -8,19 +8,18 @@ "emitDecoratorMetadata": true, "jsx": "react", "moduleResolution": "Node", + "target": "ES2020", "module": "CommonJS", "skipLibCheck": false, "allowSyntheticDefaultImports": true, "esModuleInterop": true, "isolatedModules": true, - "target": "ES2015", "types": [ "jest" ], "lib": [ - "es2019", "dom", - "ESNext" + "esnext" ] }, "exclude": [