diff --git a/packages/mui-base/test/typescript/moduleAugmentation/selectComponentsProps.tsconfig.json b/packages/mui-base/test/typescript/moduleAugmentation/selectComponentsProps.tsconfig.json index 58957ac24c247f..005e3f17bcb6e0 100644 --- a/packages/mui-base/test/typescript/moduleAugmentation/selectComponentsProps.tsconfig.json +++ b/packages/mui-base/test/typescript/moduleAugmentation/selectComponentsProps.tsconfig.json @@ -1,4 +1,4 @@ { - "extends": "../../../../../tsconfig", + "extends": "../../../../../tsconfig.json", "files": ["selectComponentsProps.spec.tsx"] } diff --git a/packages/mui-base/test/typescript/moduleAugmentation/sliderComponentsProps.tsconfig.json b/packages/mui-base/test/typescript/moduleAugmentation/sliderComponentsProps.tsconfig.json index 6e5da6ffd868e1..f01948524b4e0c 100644 --- a/packages/mui-base/test/typescript/moduleAugmentation/sliderComponentsProps.tsconfig.json +++ b/packages/mui-base/test/typescript/moduleAugmentation/sliderComponentsProps.tsconfig.json @@ -1,4 +1,4 @@ { - "extends": "../../../../../tsconfig", + "extends": "../../../../../tsconfig.json", "files": ["sliderComponentsProps.spec.tsx"] } diff --git a/packages/mui-base/tsconfig.build.json b/packages/mui-base/tsconfig.build.json index a45de38c5d2fd4..bc9de8db7f41fd 100644 --- a/packages/mui-base/tsconfig.build.json +++ b/packages/mui-base/tsconfig.build.json @@ -1,7 +1,7 @@ { // This config is for emitting declarations (.d.ts) only // Actual .ts source files are transpiled via babel - "extends": "./tsconfig", + "extends": "./tsconfig.json", "compilerOptions": { "composite": true, "declaration": true, diff --git a/packages/mui-base/tsconfig.json b/packages/mui-base/tsconfig.json index 57220954971e1e..ee756997748e1c 100644 --- a/packages/mui-base/tsconfig.json +++ b/packages/mui-base/tsconfig.json @@ -1,4 +1,4 @@ { - "extends": "../../tsconfig", + "extends": "../../tsconfig.json", "include": ["src/**/*", "test/**/*"] } diff --git a/packages/mui-icons-material/tsconfig.json b/packages/mui-icons-material/tsconfig.json index 41716a7dd5c7e0..4082f16a5d91ce 100644 --- a/packages/mui-icons-material/tsconfig.json +++ b/packages/mui-icons-material/tsconfig.json @@ -1,3 +1,3 @@ { - "extends": "../../tsconfig" + "extends": "../../tsconfig.json" } diff --git a/packages/mui-joy/test/typescript/moduleAugmentation/CssVarsProvider.tsconfig.json b/packages/mui-joy/test/typescript/moduleAugmentation/CssVarsProvider.tsconfig.json index aff4b899d0c7cd..aa8b86b7682ff0 100644 --- a/packages/mui-joy/test/typescript/moduleAugmentation/CssVarsProvider.tsconfig.json +++ b/packages/mui-joy/test/typescript/moduleAugmentation/CssVarsProvider.tsconfig.json @@ -1,4 +1,4 @@ { - "extends": "../../../../../tsconfig", + "extends": "../../../../../tsconfig.json", "files": ["CssVarsProvider.spec.tsx"] } diff --git a/packages/mui-joy/test/typescript/moduleAugmentation/themeGetCssVar.tsconfig.json b/packages/mui-joy/test/typescript/moduleAugmentation/themeGetCssVar.tsconfig.json index 8be9b7f9517582..b8b1d3db32ed6d 100644 --- a/packages/mui-joy/test/typescript/moduleAugmentation/themeGetCssVar.tsconfig.json +++ b/packages/mui-joy/test/typescript/moduleAugmentation/themeGetCssVar.tsconfig.json @@ -1,4 +1,4 @@ { - "extends": "../../../../../tsconfig", + "extends": "../../../../../tsconfig.json", "files": ["themeGetCssVar.spec.tsx"] } diff --git a/packages/mui-joy/tsconfig.build.json b/packages/mui-joy/tsconfig.build.json index c3b70f2c3afd4c..92aea03c9be6b9 100644 --- a/packages/mui-joy/tsconfig.build.json +++ b/packages/mui-joy/tsconfig.build.json @@ -1,7 +1,7 @@ { // This config is for emitting declarations (.d.ts) only // Actual .ts source files are transpiled via babel - "extends": "./tsconfig", + "extends": "./tsconfig.json", "compilerOptions": { "composite": true, "declaration": true, diff --git a/packages/mui-joy/tsconfig.json b/packages/mui-joy/tsconfig.json index 017dc5222038a0..97d1135961157b 100644 --- a/packages/mui-joy/tsconfig.json +++ b/packages/mui-joy/tsconfig.json @@ -1,4 +1,4 @@ { - "extends": "../../tsconfig", + "extends": "../../tsconfig.json", "include": ["src/**/*", "test/integration/**/*"] } diff --git a/packages/mui-lab/tsconfig.json b/packages/mui-lab/tsconfig.json index cdcaec3568a0b9..1a4b26d1b5715d 100644 --- a/packages/mui-lab/tsconfig.json +++ b/packages/mui-lab/tsconfig.json @@ -1,5 +1,5 @@ { - "extends": "../../tsconfig", + "extends": "../../tsconfig.json", "compilerOptions": { // @date-io libraries produce duplicate type `DateType` "skipLibCheck": true diff --git a/packages/mui-material-next/tsconfig.build.json b/packages/mui-material-next/tsconfig.build.json index 3002c8ea68e3e5..99aed0580da8a7 100644 --- a/packages/mui-material-next/tsconfig.build.json +++ b/packages/mui-material-next/tsconfig.build.json @@ -1,7 +1,7 @@ { // This config is for emitting declarations (.d.ts) only // Actual .ts source files are transpiled via babel - "extends": "./tsconfig", + "extends": "./tsconfig.json", "compilerOptions": { "composite": true, "declaration": true, diff --git a/packages/mui-material-next/tsconfig.json b/packages/mui-material-next/tsconfig.json index f8b0df49de6047..52d43eaaa9b975 100644 --- a/packages/mui-material-next/tsconfig.json +++ b/packages/mui-material-next/tsconfig.json @@ -1,4 +1,4 @@ { - "extends": "../../tsconfig", + "extends": "../../tsconfig.json", "include": ["src/**/*"] } diff --git a/packages/mui-material/test/typescript/moduleAugmentation/InputLabelCustomProps.tsconfig.json b/packages/mui-material/test/typescript/moduleAugmentation/InputLabelCustomProps.tsconfig.json index f53a33cae0908f..482a1a997d99ea 100644 --- a/packages/mui-material/test/typescript/moduleAugmentation/InputLabelCustomProps.tsconfig.json +++ b/packages/mui-material/test/typescript/moduleAugmentation/InputLabelCustomProps.tsconfig.json @@ -1,4 +1,4 @@ { - "extends": "../../../../../tsconfig", + "extends": "../../../../../tsconfig.json", "files": ["InputLabelCustomProps.spec.tsx"] } diff --git a/packages/mui-material/test/typescript/moduleAugmentation/TooltipSlotSxProps.tsconfig.json b/packages/mui-material/test/typescript/moduleAugmentation/TooltipSlotSxProps.tsconfig.json index 183ee60575b10c..7ec91168cd73a4 100644 --- a/packages/mui-material/test/typescript/moduleAugmentation/TooltipSlotSxProps.tsconfig.json +++ b/packages/mui-material/test/typescript/moduleAugmentation/TooltipSlotSxProps.tsconfig.json @@ -1,4 +1,4 @@ { - "extends": "../../../../../tsconfig", + "extends": "../../../../../tsconfig.json", "files": ["TooltipSlotSxProps.spec.tsx"] } diff --git a/packages/mui-material/test/typescript/moduleAugmentation/appBarProps.tsconfig.json b/packages/mui-material/test/typescript/moduleAugmentation/appBarProps.tsconfig.json index e8919fc6c1b310..ab374de0d61919 100644 --- a/packages/mui-material/test/typescript/moduleAugmentation/appBarProps.tsconfig.json +++ b/packages/mui-material/test/typescript/moduleAugmentation/appBarProps.tsconfig.json @@ -1,4 +1,4 @@ { - "extends": "../../../../../tsconfig", + "extends": "../../../../../tsconfig.json", "files": ["appBarProps.spec.tsx"] } diff --git a/packages/mui-material/test/typescript/moduleAugmentation/badgeCustomProps.tsconfig.json b/packages/mui-material/test/typescript/moduleAugmentation/badgeCustomProps.tsconfig.json index 2e3e1d2be1688d..31ab785bce4be7 100644 --- a/packages/mui-material/test/typescript/moduleAugmentation/badgeCustomProps.tsconfig.json +++ b/packages/mui-material/test/typescript/moduleAugmentation/badgeCustomProps.tsconfig.json @@ -1,4 +1,4 @@ { - "extends": "../../../../../tsconfig", + "extends": "../../../../../tsconfig.json", "files": ["badgeCustomProps.spec.tsx"] } diff --git a/packages/mui-material/test/typescript/moduleAugmentation/breakpointsOverrides.tsconfig.json b/packages/mui-material/test/typescript/moduleAugmentation/breakpointsOverrides.tsconfig.json index 9a28b5ce16bea2..9b1c91b1a858d3 100644 --- a/packages/mui-material/test/typescript/moduleAugmentation/breakpointsOverrides.tsconfig.json +++ b/packages/mui-material/test/typescript/moduleAugmentation/breakpointsOverrides.tsconfig.json @@ -1,4 +1,4 @@ { - "extends": "../../../../../tsconfig", + "extends": "../../../../../tsconfig.json", "files": ["breakpointsOverrides.spec.tsx"] } diff --git a/packages/mui-material/test/typescript/moduleAugmentation/buttonCustomProps.tsconfig.json b/packages/mui-material/test/typescript/moduleAugmentation/buttonCustomProps.tsconfig.json index 3d380777160fed..6272b4ca539335 100644 --- a/packages/mui-material/test/typescript/moduleAugmentation/buttonCustomProps.tsconfig.json +++ b/packages/mui-material/test/typescript/moduleAugmentation/buttonCustomProps.tsconfig.json @@ -1,4 +1,4 @@ { - "extends": "../../../../../tsconfig", + "extends": "../../../../../tsconfig.json", "files": ["buttonCustomProps.spec.tsx"] } diff --git a/packages/mui-material/test/typescript/moduleAugmentation/createTheme.tsconfig.json b/packages/mui-material/test/typescript/moduleAugmentation/createTheme.tsconfig.json index 05b40669ab657c..9b3b9745d8c9f7 100644 --- a/packages/mui-material/test/typescript/moduleAugmentation/createTheme.tsconfig.json +++ b/packages/mui-material/test/typescript/moduleAugmentation/createTheme.tsconfig.json @@ -1,4 +1,4 @@ { - "extends": "../../../../../tsconfig", + "extends": "../../../../../tsconfig.json", "files": ["createTheme.spec.ts"] } diff --git a/packages/mui-material/test/typescript/moduleAugmentation/formHelperTextCustomProps.tsconfig.json b/packages/mui-material/test/typescript/moduleAugmentation/formHelperTextCustomProps.tsconfig.json index a87720ed386bf7..b795c74c11ca46 100644 --- a/packages/mui-material/test/typescript/moduleAugmentation/formHelperTextCustomProps.tsconfig.json +++ b/packages/mui-material/test/typescript/moduleAugmentation/formHelperTextCustomProps.tsconfig.json @@ -1,4 +1,4 @@ { - "extends": "../../../../../tsconfig", + "extends": "../../../../../tsconfig.json", "files": ["formHelperTextCustomProps.spec.tsx"] } diff --git a/packages/mui-material/test/typescript/moduleAugmentation/gridCustomBreakpoints.tsconfig.json b/packages/mui-material/test/typescript/moduleAugmentation/gridCustomBreakpoints.tsconfig.json index c440b679ad3352..5b3782b7348d26 100644 --- a/packages/mui-material/test/typescript/moduleAugmentation/gridCustomBreakpoints.tsconfig.json +++ b/packages/mui-material/test/typescript/moduleAugmentation/gridCustomBreakpoints.tsconfig.json @@ -1,4 +1,4 @@ { - "extends": "../../../../../tsconfig", + "extends": "../../../../../tsconfig.json", "files": ["gridCustomBreakpoints.spec.tsx"] } diff --git a/packages/mui-material/test/typescript/moduleAugmentation/paletteColors.tsconfig.json b/packages/mui-material/test/typescript/moduleAugmentation/paletteColors.tsconfig.json index 1ac2413778bef7..e7260d56274cab 100644 --- a/packages/mui-material/test/typescript/moduleAugmentation/paletteColors.tsconfig.json +++ b/packages/mui-material/test/typescript/moduleAugmentation/paletteColors.tsconfig.json @@ -1,4 +1,4 @@ { - "extends": "../../../../../tsconfig", + "extends": "../../../../../tsconfig.json", "files": ["paletteColors.spec.ts"] } diff --git a/packages/mui-material/test/typescript/moduleAugmentation/progressProps.tsconfig.json b/packages/mui-material/test/typescript/moduleAugmentation/progressProps.tsconfig.json index 5f95591f23824b..5a9da100b740aa 100644 --- a/packages/mui-material/test/typescript/moduleAugmentation/progressProps.tsconfig.json +++ b/packages/mui-material/test/typescript/moduleAugmentation/progressProps.tsconfig.json @@ -1,4 +1,4 @@ { - "extends": "../../../../../tsconfig", + "extends": "../../../../../tsconfig.json", "files": ["progressProps.spec.tsx"] } diff --git a/packages/mui-material/test/typescript/moduleAugmentation/reponsiveFontSizes.tsconfig.json b/packages/mui-material/test/typescript/moduleAugmentation/reponsiveFontSizes.tsconfig.json index e9bf05b28e7bbb..39ecbfb8f9bf2a 100644 --- a/packages/mui-material/test/typescript/moduleAugmentation/reponsiveFontSizes.tsconfig.json +++ b/packages/mui-material/test/typescript/moduleAugmentation/reponsiveFontSizes.tsconfig.json @@ -1,4 +1,4 @@ { - "extends": "../../../../../tsconfig", + "extends": "../../../../../tsconfig.json", "files": ["responsiveFontSizes.spec.ts"] } diff --git a/packages/mui-material/test/typescript/moduleAugmentation/styleOverridesCallback.tsconfig.json b/packages/mui-material/test/typescript/moduleAugmentation/styleOverridesCallback.tsconfig.json index 11e671f45f81a4..80de83f04e9a37 100644 --- a/packages/mui-material/test/typescript/moduleAugmentation/styleOverridesCallback.tsconfig.json +++ b/packages/mui-material/test/typescript/moduleAugmentation/styleOverridesCallback.tsconfig.json @@ -1,4 +1,4 @@ { - "extends": "../../../../../tsconfig", + "extends": "../../../../../tsconfig.json", "files": ["styleOverridesCallback.spec.tsx"] } diff --git a/packages/mui-material/test/typescript/moduleAugmentation/systemTheme.tsconfig.json b/packages/mui-material/test/typescript/moduleAugmentation/systemTheme.tsconfig.json index 228c3f416fe123..ae1265c8852828 100644 --- a/packages/mui-material/test/typescript/moduleAugmentation/systemTheme.tsconfig.json +++ b/packages/mui-material/test/typescript/moduleAugmentation/systemTheme.tsconfig.json @@ -1,4 +1,4 @@ { - "extends": "../../../../../tsconfig", + "extends": "../../../../../tsconfig.json", "files": ["systemTheme.spec.tsx"] } diff --git a/packages/mui-material/test/typescript/moduleAugmentation/tableCellCustomProps.tsconfig.json b/packages/mui-material/test/typescript/moduleAugmentation/tableCellCustomProps.tsconfig.json index 31638de5fb0220..d06fcc7c9a4539 100644 --- a/packages/mui-material/test/typescript/moduleAugmentation/tableCellCustomProps.tsconfig.json +++ b/packages/mui-material/test/typescript/moduleAugmentation/tableCellCustomProps.tsconfig.json @@ -1,4 +1,4 @@ { - "extends": "../../../../../tsconfig", + "extends": "../../../../../tsconfig.json", "files": ["tableCellCustomProps.spec.tsx"] } diff --git a/packages/mui-material/test/typescript/moduleAugmentation/tabsCustomProps.tsconfig.json b/packages/mui-material/test/typescript/moduleAugmentation/tabsCustomProps.tsconfig.json index 3ff1fde2044295..4f21062fd1ad88 100644 --- a/packages/mui-material/test/typescript/moduleAugmentation/tabsCustomProps.tsconfig.json +++ b/packages/mui-material/test/typescript/moduleAugmentation/tabsCustomProps.tsconfig.json @@ -1,4 +1,4 @@ { - "extends": "../../../../../tsconfig", + "extends": "../../../../../tsconfig.json", "files": ["tabsCustomProps.spec.tsx"] } diff --git a/packages/mui-material/test/typescript/moduleAugmentation/textFieldCustomProps.tsconfig.json b/packages/mui-material/test/typescript/moduleAugmentation/textFieldCustomProps.tsconfig.json index 25c7ec5c973759..4354401fb6b084 100644 --- a/packages/mui-material/test/typescript/moduleAugmentation/textFieldCustomProps.tsconfig.json +++ b/packages/mui-material/test/typescript/moduleAugmentation/textFieldCustomProps.tsconfig.json @@ -1,4 +1,4 @@ { - "extends": "../../../../../tsconfig", + "extends": "../../../../../tsconfig.json", "files": ["textFieldCustomProps.spec.tsx"] } diff --git a/packages/mui-material/test/typescript/moduleAugmentation/themeComponents.tsconfig.json b/packages/mui-material/test/typescript/moduleAugmentation/themeComponents.tsconfig.json index d108ee13b9a805..77dfb5efff0e92 100644 --- a/packages/mui-material/test/typescript/moduleAugmentation/themeComponents.tsconfig.json +++ b/packages/mui-material/test/typescript/moduleAugmentation/themeComponents.tsconfig.json @@ -1,4 +1,4 @@ { - "extends": "../../../../../tsconfig", + "extends": "../../../../../tsconfig.json", "files": ["themeComponents.spec.ts"] } diff --git a/packages/mui-material/test/typescript/moduleAugmentation/themeCssVariables.tsconfig.json b/packages/mui-material/test/typescript/moduleAugmentation/themeCssVariables.tsconfig.json index 46d8e363821a69..427c7226f66986 100644 --- a/packages/mui-material/test/typescript/moduleAugmentation/themeCssVariables.tsconfig.json +++ b/packages/mui-material/test/typescript/moduleAugmentation/themeCssVariables.tsconfig.json @@ -1,4 +1,4 @@ { - "extends": "../../../../../tsconfig", + "extends": "../../../../../tsconfig.json", "files": ["themeCssVariables.spec.tsx"] } diff --git a/packages/mui-material/test/typescript/moduleAugmentation/themeCustomNode.tsconfig.json b/packages/mui-material/test/typescript/moduleAugmentation/themeCustomNode.tsconfig.json index db59bf8ec6de55..1ebc536b80be6a 100644 --- a/packages/mui-material/test/typescript/moduleAugmentation/themeCustomNode.tsconfig.json +++ b/packages/mui-material/test/typescript/moduleAugmentation/themeCustomNode.tsconfig.json @@ -1,4 +1,4 @@ { - "extends": "../../../../../tsconfig", + "extends": "../../../../../tsconfig.json", "files": ["themeCustomNode.spec.tsx"] } diff --git a/packages/mui-material/test/typescript/moduleAugmentation/themeGetCssVar.tsconfig.json b/packages/mui-material/test/typescript/moduleAugmentation/themeGetCssVar.tsconfig.json index 8be9b7f9517582..b8b1d3db32ed6d 100644 --- a/packages/mui-material/test/typescript/moduleAugmentation/themeGetCssVar.tsconfig.json +++ b/packages/mui-material/test/typescript/moduleAugmentation/themeGetCssVar.tsconfig.json @@ -1,4 +1,4 @@ { - "extends": "../../../../../tsconfig", + "extends": "../../../../../tsconfig.json", "files": ["themeGetCssVar.spec.tsx"] } diff --git a/packages/mui-material/test/typescript/moduleAugmentation/typographyVariants.tsconfig.json b/packages/mui-material/test/typescript/moduleAugmentation/typographyVariants.tsconfig.json index 963647cebb2508..41b2f5db19840c 100644 --- a/packages/mui-material/test/typescript/moduleAugmentation/typographyVariants.tsconfig.json +++ b/packages/mui-material/test/typescript/moduleAugmentation/typographyVariants.tsconfig.json @@ -1,4 +1,4 @@ { - "extends": "../../../../../tsconfig", + "extends": "../../../../../tsconfig.json", "files": ["typographyVariants.spec.tsx"] } diff --git a/packages/mui-material/tsconfig.build.json b/packages/mui-material/tsconfig.build.json index c3b70f2c3afd4c..92aea03c9be6b9 100644 --- a/packages/mui-material/tsconfig.build.json +++ b/packages/mui-material/tsconfig.build.json @@ -1,7 +1,7 @@ { // This config is for emitting declarations (.d.ts) only // Actual .ts source files are transpiled via babel - "extends": "./tsconfig", + "extends": "./tsconfig.json", "compilerOptions": { "composite": true, "declaration": true, diff --git a/packages/mui-material/tsconfig.json b/packages/mui-material/tsconfig.json index 95e08259e572d4..cb183f93333562 100644 --- a/packages/mui-material/tsconfig.json +++ b/packages/mui-material/tsconfig.json @@ -1,5 +1,5 @@ { - "extends": "../../tsconfig", + "extends": "../../tsconfig.json", "include": ["src/**/*", "test/**/*"], "exclude": ["test/typescript/moduleAugmentation", "src/types/OverridableComponentAugmentation.ts"] } diff --git a/packages/mui-private-theming/tsconfig.json b/packages/mui-private-theming/tsconfig.json index 57220954971e1e..ee756997748e1c 100644 --- a/packages/mui-private-theming/tsconfig.json +++ b/packages/mui-private-theming/tsconfig.json @@ -1,4 +1,4 @@ { - "extends": "../../tsconfig", + "extends": "../../tsconfig.json", "include": ["src/**/*", "test/**/*"] } diff --git a/packages/mui-styled-engine-sc/tsconfig.json b/packages/mui-styled-engine-sc/tsconfig.json index 57220954971e1e..ee756997748e1c 100644 --- a/packages/mui-styled-engine-sc/tsconfig.json +++ b/packages/mui-styled-engine-sc/tsconfig.json @@ -1,4 +1,4 @@ { - "extends": "../../tsconfig", + "extends": "../../tsconfig.json", "include": ["src/**/*", "test/**/*"] } diff --git a/packages/mui-styled-engine/tsconfig.json b/packages/mui-styled-engine/tsconfig.json index 57220954971e1e..ee756997748e1c 100644 --- a/packages/mui-styled-engine/tsconfig.json +++ b/packages/mui-styled-engine/tsconfig.json @@ -1,4 +1,4 @@ { - "extends": "../../tsconfig", + "extends": "../../tsconfig.json", "include": ["src/**/*", "test/**/*"] } diff --git a/packages/mui-styles/tsconfig.json b/packages/mui-styles/tsconfig.json index 57220954971e1e..ee756997748e1c 100644 --- a/packages/mui-styles/tsconfig.json +++ b/packages/mui-styles/tsconfig.json @@ -1,4 +1,4 @@ { - "extends": "../../tsconfig", + "extends": "../../tsconfig.json", "include": ["src/**/*", "test/**/*"] } diff --git a/packages/mui-system/test/typescript/moduleAugmentation/gridCustomBreakpoints.tsconfig.json b/packages/mui-system/test/typescript/moduleAugmentation/gridCustomBreakpoints.tsconfig.json index c440b679ad3352..5b3782b7348d26 100644 --- a/packages/mui-system/test/typescript/moduleAugmentation/gridCustomBreakpoints.tsconfig.json +++ b/packages/mui-system/test/typescript/moduleAugmentation/gridCustomBreakpoints.tsconfig.json @@ -1,4 +1,4 @@ { - "extends": "../../../../../tsconfig", + "extends": "../../../../../tsconfig.json", "files": ["gridCustomBreakpoints.spec.tsx"] } diff --git a/packages/mui-system/tsconfig.build.json b/packages/mui-system/tsconfig.build.json index a45de38c5d2fd4..bc9de8db7f41fd 100644 --- a/packages/mui-system/tsconfig.build.json +++ b/packages/mui-system/tsconfig.build.json @@ -1,7 +1,7 @@ { // This config is for emitting declarations (.d.ts) only // Actual .ts source files are transpiled via babel - "extends": "./tsconfig", + "extends": "./tsconfig.json", "compilerOptions": { "composite": true, "declaration": true, diff --git a/packages/mui-system/tsconfig.json b/packages/mui-system/tsconfig.json index e2a561189be7c6..09c7a60fdb55a0 100644 --- a/packages/mui-system/tsconfig.json +++ b/packages/mui-system/tsconfig.json @@ -1,5 +1,5 @@ { - "extends": "../../tsconfig", + "extends": "../../tsconfig.json", "include": ["src/**/*", "test/**/*"], "exclude": ["test/typescript/moduleAugmentation"] } diff --git a/packages/mui-types/tsconfig.json b/packages/mui-types/tsconfig.json index 6e2e977ce1b789..ecd9465fd7fcc8 100644 --- a/packages/mui-types/tsconfig.json +++ b/packages/mui-types/tsconfig.json @@ -1,4 +1,4 @@ { - "extends": "../../tsconfig", + "extends": "../../tsconfig.json", "exclude": ["OverridableComponentAugmentation.ts"] } diff --git a/packages/mui-utils/tsconfig.build.json b/packages/mui-utils/tsconfig.build.json index f10360d400e902..f3106abb0f596c 100644 --- a/packages/mui-utils/tsconfig.build.json +++ b/packages/mui-utils/tsconfig.build.json @@ -1,7 +1,7 @@ { // This config is for emitting declarations (.d.ts) only // Actual .ts source files are transpiled via babel - "extends": "./tsconfig", + "extends": "./tsconfig.json", "compilerOptions": { "declaration": true, "noEmit": false, diff --git a/packages/mui-utils/tsconfig.json b/packages/mui-utils/tsconfig.json index f4f5e329cf387e..e7d248754c9c1c 100644 --- a/packages/mui-utils/tsconfig.json +++ b/packages/mui-utils/tsconfig.json @@ -1,5 +1,5 @@ { - "extends": "../../tsconfig", + "extends": "../../tsconfig.json", "compilerOptions": { "types": ["react", "mocha", "node"] }, diff --git a/packages/zero-runtime/tsconfig.build.json b/packages/zero-runtime/tsconfig.build.json index b610d91fc6fb3f..05dec83dca2af2 100644 --- a/packages/zero-runtime/tsconfig.build.json +++ b/packages/zero-runtime/tsconfig.build.json @@ -1,7 +1,7 @@ { // This config is for emitting declarations (.d.ts) only // Actual .ts source files are transpiled via babel - "extends": "./tsconfig", + "extends": "./tsconfig.json", "compilerOptions": { "composite": true, "declaration": true, diff --git a/packages/zero-runtime/tsconfig.json b/packages/zero-runtime/tsconfig.json index 1699157b29b029..4f80efafeb94ed 100644 --- a/packages/zero-runtime/tsconfig.json +++ b/packages/zero-runtime/tsconfig.json @@ -1,5 +1,5 @@ { - "extends": "../../tsconfig", + "extends": "../../tsconfig.json", "include": ["src/**/*", "test/**/*"], "compilerOptions": { "types": ["mocha", "node", "chai", "react"] diff --git a/packages/zero-tag-processor/tsconfig.build.json b/packages/zero-tag-processor/tsconfig.build.json index 999b63c5a9ebc5..d97878065b93d9 100644 --- a/packages/zero-tag-processor/tsconfig.build.json +++ b/packages/zero-tag-processor/tsconfig.build.json @@ -1,7 +1,7 @@ { // This config is for emitting declarations (.d.ts) only // Actual .ts source files are transpiled via babel - "extends": "./tsconfig", + "extends": "./tsconfig.json", "compilerOptions": { "target": "ES2015", "composite": true, diff --git a/packages/zero-tag-processor/tsconfig.json b/packages/zero-tag-processor/tsconfig.json index 79f9a30c3552bd..0b3c7e1b055d47 100644 --- a/packages/zero-tag-processor/tsconfig.json +++ b/packages/zero-tag-processor/tsconfig.json @@ -1,5 +1,5 @@ { - "extends": "../../tsconfig", + "extends": "../../tsconfig.json", "include": ["src/**/*", "test/**/*"], "compilerOptions": { "lib": ["ES2022", "DOM"], diff --git a/packages/zero-vite-plugin/tsconfig.build.json b/packages/zero-vite-plugin/tsconfig.build.json index 2f20623e244163..3e6eaaa8ca2754 100644 --- a/packages/zero-vite-plugin/tsconfig.build.json +++ b/packages/zero-vite-plugin/tsconfig.build.json @@ -1,7 +1,7 @@ { // This config is for emitting declarations (.d.ts) only // Actual .ts source files are transpiled via babel - "extends": "./tsconfig", + "extends": "./tsconfig.json", "compilerOptions": { "target": "ES2015", "composite": true, diff --git a/packages/zero-vite-plugin/tsconfig.json b/packages/zero-vite-plugin/tsconfig.json index 79f9a30c3552bd..0b3c7e1b055d47 100644 --- a/packages/zero-vite-plugin/tsconfig.json +++ b/packages/zero-vite-plugin/tsconfig.json @@ -1,5 +1,5 @@ { - "extends": "../../tsconfig", + "extends": "../../tsconfig.json", "include": ["src/**/*", "test/**/*"], "compilerOptions": { "lib": ["ES2022", "DOM"],