From 0069e297d933e42657713088d58ebc445aeee576 Mon Sep 17 00:00:00 2001 From: Saad Najmi Date: Wed, 29 Jan 2025 15:36:17 -0800 Subject: [PATCH 1/4] Simplify TypeScript configuration files --- .vscode/launch.json | 15 --- apps/E2E/tsconfig.json | 2 +- .../ComponentTemplate/tsconfig.json | 6 +- apps/fluent-tester/tsconfig.json | 2 +- apps/win32/tsconfig.json | 4 +- package.json | 1 - packages/codemods/tsconfig.json | 4 - packages/components/Avatar/tsconfig.json | 6 +- packages/components/Badge/tsconfig.json | 6 +- packages/components/Button/tsconfig.json | 6 +- packages/components/Callout/tsconfig.json | 6 +- packages/components/Checkbox/tsconfig.json | 6 +- packages/components/Chip/tsconfig.json | 6 +- .../components/ContextualMenu/tsconfig.json | 6 +- packages/components/Divider/tsconfig.json | 6 +- .../components/FocusTrapZone/tsconfig.json | 6 +- packages/components/FocusZone/tsconfig.json | 6 +- packages/components/Icon/tsconfig.json | 6 +- packages/components/Input/tsconfig.json | 3 - packages/components/Link/tsconfig.json | 5 +- packages/components/Menu/tsconfig.json | 5 +- packages/components/MenuButton/tsconfig.json | 6 +- .../components/Notification/tsconfig.json | 6 +- packages/components/Persona/tsconfig.json | 6 +- packages/components/PersonaCoin/tsconfig.json | 6 +- packages/components/Pressable/tsconfig.json | 6 +- packages/components/RadioGroup/tsconfig.json | 5 +- packages/components/Separator/tsconfig.json | 6 +- packages/components/Stack/tsconfig.json | 6 +- packages/components/Switch/tsconfig.json | 6 +- packages/components/TabList/tsconfig.json | 5 +- packages/components/Text/tsconfig.json | 6 +- .../foundation-composable/tsconfig.json | 6 +- .../foundation-compose/tsconfig.json | 6 +- .../foundation-settings/tsconfig.json | 6 +- .../foundation-tokens/tsconfig.json | 7 +- .../deprecated/theme-registry/tsconfig.json | 6 +- .../deprecated/themed-settings/tsconfig.json | 6 +- .../deprecated/theming-ramp/tsconfig.json | 6 +- .../theming-react-native/tsconfig.json | 3 - .../ActivityIndicator/tsconfig.json | 6 +- .../AppearanceAdditions/tsconfig.json | 6 +- packages/experimental/Avatar/tsconfig.json | 6 +- packages/experimental/Checkbox/tsconfig.json | 1 - packages/experimental/Drawer/tsconfig.json | 3 - packages/experimental/Dropdown/tsconfig.json | 1 - packages/experimental/Expander/tsconfig.json | 6 +- .../experimental/MenuButton/tsconfig.json | 6 +- .../NativeDatePicker/tsconfig.json | 6 +- .../NativeFontMetrics/tsconfig.json | 6 +- packages/experimental/Overflow/tsconfig.json | 5 +- packages/experimental/Popover/tsconfig.json | 5 +- packages/experimental/Shadow/tsconfig.json | 6 +- packages/experimental/Shimmer/tsconfig.json | 6 +- packages/experimental/Spinner/tsconfig.json | 6 +- packages/experimental/Stack/tsconfig.json | 5 +- packages/experimental/Tooltip/tsconfig.json | 5 +- .../experimental/VibrancyView/tsconfig.json | 7 +- packages/framework/composition/tsconfig.json | 6 +- packages/framework/framework/tsconfig.json | 5 +- .../framework/immutable-merge/tsconfig.json | 5 +- packages/framework/memo-cache/tsconfig.json | 5 +- packages/framework/merge-props/tsconfig.json | 5 +- packages/framework/theme/tsconfig.json | 6 +- .../framework/themed-stylesheet/tsconfig.json | 6 +- packages/framework/use-slot/tsconfig.json | 5 +- packages/framework/use-slots/tsconfig.json | 6 +- packages/framework/use-styling/tsconfig.json | 5 +- packages/framework/use-tokens/tsconfig.json | 5 +- packages/libraries/core/tsconfig.json | 2 +- packages/theming/android-theme/tsconfig.json | 7 +- packages/theming/apple-theme/tsconfig.json | 7 +- packages/theming/default-theme/tsconfig.json | 6 +- packages/theming/theme-tokens/tsconfig.json | 7 +- packages/theming/theme-types/tsconfig.json | 6 +- packages/theming/theming-utils/tsconfig.json | 6 +- packages/theming/win32-theme/tsconfig.json | 8 +- packages/utils/adapters/tsconfig.json | 6 +- .../utils/interactive-hooks/tsconfig.json | 5 +- packages/utils/styling/tsconfig.json | 6 +- packages/utils/test-tools/tsconfig.json | 6 +- packages/utils/tokens/tsconfig.json | 7 +- scripts/src/clean-all.js | 109 ------------------ scripts/src/debug-metro-pack.js | 4 - scripts/tsconfig.json | 5 +- tsconfig.json | 5 +- 86 files changed, 79 insertions(+), 497 deletions(-) delete mode 100644 scripts/src/clean-all.js delete mode 100644 scripts/src/debug-metro-pack.js diff --git a/.vscode/launch.json b/.vscode/launch.json index 023b581669..cb80c70857 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -46,21 +46,6 @@ "sourceMaps": true, "outFiles": [] }, - { - "name": "Debug metro bundling task", - "type": "node", - "request": "launch", - "program": "${workspaceRoot}/scripts/debug-metro-pack.js", - "cwd": "${workspaceFolder}/packages/libraries/core", - "args": ["rnTester"], - "runtimeArgs": ["--nolazy"], - "env": { - "NODE_ENV": "development" - }, - "console": "integratedTerminal", - "sourceMaps": true, - "outFiles": [] - }, { "name": "Debug Fabric Tester", "type": "node", diff --git a/apps/E2E/tsconfig.json b/apps/E2E/tsconfig.json index 758cef9cb6..ac62dcc8b7 100644 --- a/apps/E2E/tsconfig.json +++ b/apps/E2E/tsconfig.json @@ -2,7 +2,7 @@ "extends": "@fluentui-react-native/scripts/tsconfig.json", "compilerOptions": { "baseUrl": ".", - "importHelpers": true, + "outDir": "lib", "paths": { "*": ["*", "*.win32", "./*"], diff --git a/apps/component-generator/component-templates/ComponentTemplate/tsconfig.json b/apps/component-generator/component-templates/ComponentTemplate/tsconfig.json index 2897c1e1b9..559954a6e9 100644 --- a/apps/component-generator/component-templates/ComponentTemplate/tsconfig.json +++ b/apps/component-generator/component-templates/ComponentTemplate/tsconfig.json @@ -1,7 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "outDir": "lib" - }, - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/apps/fluent-tester/tsconfig.json b/apps/fluent-tester/tsconfig.json index 758cef9cb6..ac62dcc8b7 100644 --- a/apps/fluent-tester/tsconfig.json +++ b/apps/fluent-tester/tsconfig.json @@ -2,7 +2,7 @@ "extends": "@fluentui-react-native/scripts/tsconfig.json", "compilerOptions": { "baseUrl": ".", - "importHelpers": true, + "outDir": "lib", "paths": { "*": ["*", "*.win32", "./*"], diff --git a/apps/win32/tsconfig.json b/apps/win32/tsconfig.json index c4159edda5..f6cc56acb6 100644 --- a/apps/win32/tsconfig.json +++ b/apps/win32/tsconfig.json @@ -2,11 +2,11 @@ "extends": "@fluentui-react-native/scripts/tsconfig.json", "compilerOptions": { "baseUrl": ".", - "importHelpers": true, + "paths": { "*": ["*", "*.win32"], "src/*": ["./src/*"] - }, + } }, "include": ["src"] } diff --git a/package.json b/package.json index b0bbb5db02..8398d66ad7 100644 --- a/package.json +++ b/package.json @@ -16,7 +16,6 @@ "build-tools": "lage build-tools", "buildci": "lage buildci", "bump-versions": "beachball bump", - "clean-all": "node ./scripts/clean-all.js", "docs": "yarn workspace fluent-rn-website start", "bundle": "lage bundle", "clean": "lage clean", diff --git a/packages/codemods/tsconfig.json b/packages/codemods/tsconfig.json index fda9d53c1c..ba5fcb5ed4 100644 --- a/packages/codemods/tsconfig.json +++ b/packages/codemods/tsconfig.json @@ -1,8 +1,4 @@ { "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "outDir": "lib" - }, - "include": ["src"], "exclude": ["src/transforms/__testfixtures__"] } diff --git a/packages/components/Avatar/tsconfig.json b/packages/components/Avatar/tsconfig.json index 2897c1e1b9..559954a6e9 100644 --- a/packages/components/Avatar/tsconfig.json +++ b/packages/components/Avatar/tsconfig.json @@ -1,7 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "outDir": "lib" - }, - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/packages/components/Badge/tsconfig.json b/packages/components/Badge/tsconfig.json index 2897c1e1b9..559954a6e9 100644 --- a/packages/components/Badge/tsconfig.json +++ b/packages/components/Badge/tsconfig.json @@ -1,7 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "outDir": "lib" - }, - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/packages/components/Button/tsconfig.json b/packages/components/Button/tsconfig.json index 2897c1e1b9..559954a6e9 100644 --- a/packages/components/Button/tsconfig.json +++ b/packages/components/Button/tsconfig.json @@ -1,7 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "outDir": "lib" - }, - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/packages/components/Callout/tsconfig.json b/packages/components/Callout/tsconfig.json index 2897c1e1b9..559954a6e9 100644 --- a/packages/components/Callout/tsconfig.json +++ b/packages/components/Callout/tsconfig.json @@ -1,7 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "outDir": "lib" - }, - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/packages/components/Checkbox/tsconfig.json b/packages/components/Checkbox/tsconfig.json index 2897c1e1b9..559954a6e9 100644 --- a/packages/components/Checkbox/tsconfig.json +++ b/packages/components/Checkbox/tsconfig.json @@ -1,7 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "outDir": "lib" - }, - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/packages/components/Chip/tsconfig.json b/packages/components/Chip/tsconfig.json index 2897c1e1b9..559954a6e9 100644 --- a/packages/components/Chip/tsconfig.json +++ b/packages/components/Chip/tsconfig.json @@ -1,7 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "outDir": "lib" - }, - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/packages/components/ContextualMenu/tsconfig.json b/packages/components/ContextualMenu/tsconfig.json index 2897c1e1b9..559954a6e9 100644 --- a/packages/components/ContextualMenu/tsconfig.json +++ b/packages/components/ContextualMenu/tsconfig.json @@ -1,7 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "outDir": "lib" - }, - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/packages/components/Divider/tsconfig.json b/packages/components/Divider/tsconfig.json index 2897c1e1b9..559954a6e9 100644 --- a/packages/components/Divider/tsconfig.json +++ b/packages/components/Divider/tsconfig.json @@ -1,7 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "outDir": "lib" - }, - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/packages/components/FocusTrapZone/tsconfig.json b/packages/components/FocusTrapZone/tsconfig.json index 2897c1e1b9..559954a6e9 100644 --- a/packages/components/FocusTrapZone/tsconfig.json +++ b/packages/components/FocusTrapZone/tsconfig.json @@ -1,7 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "outDir": "lib" - }, - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/packages/components/FocusZone/tsconfig.json b/packages/components/FocusZone/tsconfig.json index 2897c1e1b9..559954a6e9 100644 --- a/packages/components/FocusZone/tsconfig.json +++ b/packages/components/FocusZone/tsconfig.json @@ -1,7 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "outDir": "lib" - }, - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/packages/components/Icon/tsconfig.json b/packages/components/Icon/tsconfig.json index 2897c1e1b9..559954a6e9 100644 --- a/packages/components/Icon/tsconfig.json +++ b/packages/components/Icon/tsconfig.json @@ -1,7 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "outDir": "lib" - }, - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/packages/components/Input/tsconfig.json b/packages/components/Input/tsconfig.json index 98539028fb..085e501c22 100644 --- a/packages/components/Input/tsconfig.json +++ b/packages/components/Input/tsconfig.json @@ -1,7 +1,4 @@ { "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "outDir": "lib" - }, "include": ["src", "svgs.d.ts"] } diff --git a/packages/components/Link/tsconfig.json b/packages/components/Link/tsconfig.json index feff7a3229..b59f552e9b 100644 --- a/packages/components/Link/tsconfig.json +++ b/packages/components/Link/tsconfig.json @@ -1,8 +1,5 @@ { "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "importHelpers": true, - "outDir": "lib" - }, + "include": ["src"] } diff --git a/packages/components/Menu/tsconfig.json b/packages/components/Menu/tsconfig.json index feff7a3229..b59f552e9b 100644 --- a/packages/components/Menu/tsconfig.json +++ b/packages/components/Menu/tsconfig.json @@ -1,8 +1,5 @@ { "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "importHelpers": true, - "outDir": "lib" - }, + "include": ["src"] } diff --git a/packages/components/MenuButton/tsconfig.json b/packages/components/MenuButton/tsconfig.json index 2897c1e1b9..559954a6e9 100644 --- a/packages/components/MenuButton/tsconfig.json +++ b/packages/components/MenuButton/tsconfig.json @@ -1,7 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "outDir": "lib" - }, - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/packages/components/Notification/tsconfig.json b/packages/components/Notification/tsconfig.json index 2897c1e1b9..559954a6e9 100644 --- a/packages/components/Notification/tsconfig.json +++ b/packages/components/Notification/tsconfig.json @@ -1,7 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "outDir": "lib" - }, - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/packages/components/Persona/tsconfig.json b/packages/components/Persona/tsconfig.json index 2897c1e1b9..559954a6e9 100644 --- a/packages/components/Persona/tsconfig.json +++ b/packages/components/Persona/tsconfig.json @@ -1,7 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "outDir": "lib" - }, - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/packages/components/PersonaCoin/tsconfig.json b/packages/components/PersonaCoin/tsconfig.json index 2897c1e1b9..559954a6e9 100644 --- a/packages/components/PersonaCoin/tsconfig.json +++ b/packages/components/PersonaCoin/tsconfig.json @@ -1,7 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "outDir": "lib" - }, - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/packages/components/Pressable/tsconfig.json b/packages/components/Pressable/tsconfig.json index 2897c1e1b9..559954a6e9 100644 --- a/packages/components/Pressable/tsconfig.json +++ b/packages/components/Pressable/tsconfig.json @@ -1,7 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "outDir": "lib" - }, - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/packages/components/RadioGroup/tsconfig.json b/packages/components/RadioGroup/tsconfig.json index feff7a3229..b59f552e9b 100644 --- a/packages/components/RadioGroup/tsconfig.json +++ b/packages/components/RadioGroup/tsconfig.json @@ -1,8 +1,5 @@ { "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "importHelpers": true, - "outDir": "lib" - }, + "include": ["src"] } diff --git a/packages/components/Separator/tsconfig.json b/packages/components/Separator/tsconfig.json index 2897c1e1b9..559954a6e9 100644 --- a/packages/components/Separator/tsconfig.json +++ b/packages/components/Separator/tsconfig.json @@ -1,7 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "outDir": "lib" - }, - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/packages/components/Stack/tsconfig.json b/packages/components/Stack/tsconfig.json index 2897c1e1b9..559954a6e9 100644 --- a/packages/components/Stack/tsconfig.json +++ b/packages/components/Stack/tsconfig.json @@ -1,7 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "outDir": "lib" - }, - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/packages/components/Switch/tsconfig.json b/packages/components/Switch/tsconfig.json index 2897c1e1b9..559954a6e9 100644 --- a/packages/components/Switch/tsconfig.json +++ b/packages/components/Switch/tsconfig.json @@ -1,7 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "outDir": "lib" - }, - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/packages/components/TabList/tsconfig.json b/packages/components/TabList/tsconfig.json index feff7a3229..b59f552e9b 100644 --- a/packages/components/TabList/tsconfig.json +++ b/packages/components/TabList/tsconfig.json @@ -1,8 +1,5 @@ { "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "importHelpers": true, - "outDir": "lib" - }, + "include": ["src"] } diff --git a/packages/components/Text/tsconfig.json b/packages/components/Text/tsconfig.json index 2897c1e1b9..559954a6e9 100644 --- a/packages/components/Text/tsconfig.json +++ b/packages/components/Text/tsconfig.json @@ -1,7 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "outDir": "lib" - }, - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/packages/deprecated/foundation-composable/tsconfig.json b/packages/deprecated/foundation-composable/tsconfig.json index 2897c1e1b9..559954a6e9 100644 --- a/packages/deprecated/foundation-composable/tsconfig.json +++ b/packages/deprecated/foundation-composable/tsconfig.json @@ -1,7 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "outDir": "lib" - }, - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/packages/deprecated/foundation-compose/tsconfig.json b/packages/deprecated/foundation-compose/tsconfig.json index 2897c1e1b9..559954a6e9 100644 --- a/packages/deprecated/foundation-compose/tsconfig.json +++ b/packages/deprecated/foundation-compose/tsconfig.json @@ -1,7 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "outDir": "lib" - }, - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/packages/deprecated/foundation-settings/tsconfig.json b/packages/deprecated/foundation-settings/tsconfig.json index 2897c1e1b9..559954a6e9 100644 --- a/packages/deprecated/foundation-settings/tsconfig.json +++ b/packages/deprecated/foundation-settings/tsconfig.json @@ -1,7 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "outDir": "lib" - }, - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/packages/deprecated/foundation-tokens/tsconfig.json b/packages/deprecated/foundation-tokens/tsconfig.json index de2e5b3c76..559954a6e9 100644 --- a/packages/deprecated/foundation-tokens/tsconfig.json +++ b/packages/deprecated/foundation-tokens/tsconfig.json @@ -1,8 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "outDir": "lib", - "types": ["node", "jest", "react"] - }, - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/packages/deprecated/theme-registry/tsconfig.json b/packages/deprecated/theme-registry/tsconfig.json index 2897c1e1b9..559954a6e9 100644 --- a/packages/deprecated/theme-registry/tsconfig.json +++ b/packages/deprecated/theme-registry/tsconfig.json @@ -1,7 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "outDir": "lib" - }, - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/packages/deprecated/themed-settings/tsconfig.json b/packages/deprecated/themed-settings/tsconfig.json index 2897c1e1b9..559954a6e9 100644 --- a/packages/deprecated/themed-settings/tsconfig.json +++ b/packages/deprecated/themed-settings/tsconfig.json @@ -1,7 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "outDir": "lib" - }, - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/packages/deprecated/theming-ramp/tsconfig.json b/packages/deprecated/theming-ramp/tsconfig.json index 2897c1e1b9..559954a6e9 100644 --- a/packages/deprecated/theming-ramp/tsconfig.json +++ b/packages/deprecated/theming-ramp/tsconfig.json @@ -1,7 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "outDir": "lib" - }, - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/packages/deprecated/theming-react-native/tsconfig.json b/packages/deprecated/theming-react-native/tsconfig.json index 0f5dbf2939..2e0a1bdfc0 100644 --- a/packages/deprecated/theming-react-native/tsconfig.json +++ b/packages/deprecated/theming-react-native/tsconfig.json @@ -1,7 +1,4 @@ { "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "outDir": "lib" - }, "include": ["src", "jest"] } diff --git a/packages/experimental/ActivityIndicator/tsconfig.json b/packages/experimental/ActivityIndicator/tsconfig.json index 2897c1e1b9..559954a6e9 100644 --- a/packages/experimental/ActivityIndicator/tsconfig.json +++ b/packages/experimental/ActivityIndicator/tsconfig.json @@ -1,7 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "outDir": "lib" - }, - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/packages/experimental/AppearanceAdditions/tsconfig.json b/packages/experimental/AppearanceAdditions/tsconfig.json index 2897c1e1b9..559954a6e9 100644 --- a/packages/experimental/AppearanceAdditions/tsconfig.json +++ b/packages/experimental/AppearanceAdditions/tsconfig.json @@ -1,7 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "outDir": "lib" - }, - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/packages/experimental/Avatar/tsconfig.json b/packages/experimental/Avatar/tsconfig.json index 2897c1e1b9..559954a6e9 100644 --- a/packages/experimental/Avatar/tsconfig.json +++ b/packages/experimental/Avatar/tsconfig.json @@ -1,7 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "outDir": "lib" - }, - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/packages/experimental/Checkbox/tsconfig.json b/packages/experimental/Checkbox/tsconfig.json index 22647b458d..d61066838b 100644 --- a/packages/experimental/Checkbox/tsconfig.json +++ b/packages/experimental/Checkbox/tsconfig.json @@ -1,7 +1,6 @@ { "extends": "@fluentui-react-native/scripts/tsconfig.json", "compilerOptions": { - "importHelpers": true, "outDir": "lib", "types": ["node"] }, diff --git a/packages/experimental/Drawer/tsconfig.json b/packages/experimental/Drawer/tsconfig.json index 98539028fb..085e501c22 100644 --- a/packages/experimental/Drawer/tsconfig.json +++ b/packages/experimental/Drawer/tsconfig.json @@ -1,7 +1,4 @@ { "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "outDir": "lib" - }, "include": ["src", "svgs.d.ts"] } diff --git a/packages/experimental/Dropdown/tsconfig.json b/packages/experimental/Dropdown/tsconfig.json index 22647b458d..d61066838b 100644 --- a/packages/experimental/Dropdown/tsconfig.json +++ b/packages/experimental/Dropdown/tsconfig.json @@ -1,7 +1,6 @@ { "extends": "@fluentui-react-native/scripts/tsconfig.json", "compilerOptions": { - "importHelpers": true, "outDir": "lib", "types": ["node"] }, diff --git a/packages/experimental/Expander/tsconfig.json b/packages/experimental/Expander/tsconfig.json index 2897c1e1b9..559954a6e9 100644 --- a/packages/experimental/Expander/tsconfig.json +++ b/packages/experimental/Expander/tsconfig.json @@ -1,7 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "outDir": "lib" - }, - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/packages/experimental/MenuButton/tsconfig.json b/packages/experimental/MenuButton/tsconfig.json index 2897c1e1b9..559954a6e9 100644 --- a/packages/experimental/MenuButton/tsconfig.json +++ b/packages/experimental/MenuButton/tsconfig.json @@ -1,7 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "outDir": "lib" - }, - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/packages/experimental/NativeDatePicker/tsconfig.json b/packages/experimental/NativeDatePicker/tsconfig.json index 2897c1e1b9..559954a6e9 100644 --- a/packages/experimental/NativeDatePicker/tsconfig.json +++ b/packages/experimental/NativeDatePicker/tsconfig.json @@ -1,7 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "outDir": "lib" - }, - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/packages/experimental/NativeFontMetrics/tsconfig.json b/packages/experimental/NativeFontMetrics/tsconfig.json index 2897c1e1b9..559954a6e9 100644 --- a/packages/experimental/NativeFontMetrics/tsconfig.json +++ b/packages/experimental/NativeFontMetrics/tsconfig.json @@ -1,7 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "outDir": "lib" - }, - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/packages/experimental/Overflow/tsconfig.json b/packages/experimental/Overflow/tsconfig.json index feff7a3229..b59f552e9b 100644 --- a/packages/experimental/Overflow/tsconfig.json +++ b/packages/experimental/Overflow/tsconfig.json @@ -1,8 +1,5 @@ { "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "importHelpers": true, - "outDir": "lib" - }, + "include": ["src"] } diff --git a/packages/experimental/Popover/tsconfig.json b/packages/experimental/Popover/tsconfig.json index feff7a3229..b59f552e9b 100644 --- a/packages/experimental/Popover/tsconfig.json +++ b/packages/experimental/Popover/tsconfig.json @@ -1,8 +1,5 @@ { "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "importHelpers": true, - "outDir": "lib" - }, + "include": ["src"] } diff --git a/packages/experimental/Shadow/tsconfig.json b/packages/experimental/Shadow/tsconfig.json index 2897c1e1b9..559954a6e9 100644 --- a/packages/experimental/Shadow/tsconfig.json +++ b/packages/experimental/Shadow/tsconfig.json @@ -1,7 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "outDir": "lib" - }, - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/packages/experimental/Shimmer/tsconfig.json b/packages/experimental/Shimmer/tsconfig.json index 2897c1e1b9..559954a6e9 100644 --- a/packages/experimental/Shimmer/tsconfig.json +++ b/packages/experimental/Shimmer/tsconfig.json @@ -1,7 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "outDir": "lib" - }, - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/packages/experimental/Spinner/tsconfig.json b/packages/experimental/Spinner/tsconfig.json index 2897c1e1b9..559954a6e9 100644 --- a/packages/experimental/Spinner/tsconfig.json +++ b/packages/experimental/Spinner/tsconfig.json @@ -1,7 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "outDir": "lib" - }, - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/packages/experimental/Stack/tsconfig.json b/packages/experimental/Stack/tsconfig.json index feff7a3229..b59f552e9b 100644 --- a/packages/experimental/Stack/tsconfig.json +++ b/packages/experimental/Stack/tsconfig.json @@ -1,8 +1,5 @@ { "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "importHelpers": true, - "outDir": "lib" - }, + "include": ["src"] } diff --git a/packages/experimental/Tooltip/tsconfig.json b/packages/experimental/Tooltip/tsconfig.json index feff7a3229..b59f552e9b 100644 --- a/packages/experimental/Tooltip/tsconfig.json +++ b/packages/experimental/Tooltip/tsconfig.json @@ -1,8 +1,5 @@ { "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "importHelpers": true, - "outDir": "lib" - }, + "include": ["src"] } diff --git a/packages/experimental/VibrancyView/tsconfig.json b/packages/experimental/VibrancyView/tsconfig.json index feff7a3229..559954a6e9 100644 --- a/packages/experimental/VibrancyView/tsconfig.json +++ b/packages/experimental/VibrancyView/tsconfig.json @@ -1,8 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "importHelpers": true, - "outDir": "lib" - }, - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/packages/framework/composition/tsconfig.json b/packages/framework/composition/tsconfig.json index 2897c1e1b9..559954a6e9 100644 --- a/packages/framework/composition/tsconfig.json +++ b/packages/framework/composition/tsconfig.json @@ -1,7 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "outDir": "lib" - }, - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/packages/framework/framework/tsconfig.json b/packages/framework/framework/tsconfig.json index 127f1c197a..6e5c38b691 100644 --- a/packages/framework/framework/tsconfig.json +++ b/packages/framework/framework/tsconfig.json @@ -7,7 +7,6 @@ "target": "es5", "sourceMap": true, "experimentalDecorators": true, - "importHelpers": true, "strictNullChecks": true, "noImplicitAny": true, "noEmitOnError": true, @@ -15,8 +14,6 @@ "moduleResolution": "node", "noUnusedLocals": true, "strict": true, - "suppressImplicitAnyIndexErrors": true, "lib": ["es6"] - }, - "include": ["src"] + } } diff --git a/packages/framework/immutable-merge/tsconfig.json b/packages/framework/immutable-merge/tsconfig.json index feff7a3229..b59f552e9b 100644 --- a/packages/framework/immutable-merge/tsconfig.json +++ b/packages/framework/immutable-merge/tsconfig.json @@ -1,8 +1,5 @@ { "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "importHelpers": true, - "outDir": "lib" - }, + "include": ["src"] } diff --git a/packages/framework/memo-cache/tsconfig.json b/packages/framework/memo-cache/tsconfig.json index feff7a3229..b59f552e9b 100644 --- a/packages/framework/memo-cache/tsconfig.json +++ b/packages/framework/memo-cache/tsconfig.json @@ -1,8 +1,5 @@ { "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "importHelpers": true, - "outDir": "lib" - }, + "include": ["src"] } diff --git a/packages/framework/merge-props/tsconfig.json b/packages/framework/merge-props/tsconfig.json index feff7a3229..b59f552e9b 100644 --- a/packages/framework/merge-props/tsconfig.json +++ b/packages/framework/merge-props/tsconfig.json @@ -1,8 +1,5 @@ { "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "importHelpers": true, - "outDir": "lib" - }, + "include": ["src"] } diff --git a/packages/framework/theme/tsconfig.json b/packages/framework/theme/tsconfig.json index 2897c1e1b9..559954a6e9 100644 --- a/packages/framework/theme/tsconfig.json +++ b/packages/framework/theme/tsconfig.json @@ -1,7 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "outDir": "lib" - }, - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/packages/framework/themed-stylesheet/tsconfig.json b/packages/framework/themed-stylesheet/tsconfig.json index 2897c1e1b9..559954a6e9 100644 --- a/packages/framework/themed-stylesheet/tsconfig.json +++ b/packages/framework/themed-stylesheet/tsconfig.json @@ -1,7 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "outDir": "lib" - }, - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/packages/framework/use-slot/tsconfig.json b/packages/framework/use-slot/tsconfig.json index feff7a3229..b59f552e9b 100644 --- a/packages/framework/use-slot/tsconfig.json +++ b/packages/framework/use-slot/tsconfig.json @@ -1,8 +1,5 @@ { "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "importHelpers": true, - "outDir": "lib" - }, + "include": ["src"] } diff --git a/packages/framework/use-slots/tsconfig.json b/packages/framework/use-slots/tsconfig.json index 2897c1e1b9..559954a6e9 100644 --- a/packages/framework/use-slots/tsconfig.json +++ b/packages/framework/use-slots/tsconfig.json @@ -1,7 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "outDir": "lib" - }, - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/packages/framework/use-styling/tsconfig.json b/packages/framework/use-styling/tsconfig.json index feff7a3229..b59f552e9b 100644 --- a/packages/framework/use-styling/tsconfig.json +++ b/packages/framework/use-styling/tsconfig.json @@ -1,8 +1,5 @@ { "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "importHelpers": true, - "outDir": "lib" - }, + "include": ["src"] } diff --git a/packages/framework/use-tokens/tsconfig.json b/packages/framework/use-tokens/tsconfig.json index feff7a3229..b59f552e9b 100644 --- a/packages/framework/use-tokens/tsconfig.json +++ b/packages/framework/use-tokens/tsconfig.json @@ -1,8 +1,5 @@ { "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "importHelpers": true, - "outDir": "lib" - }, + "include": ["src"] } diff --git a/packages/libraries/core/tsconfig.json b/packages/libraries/core/tsconfig.json index c02956dd07..9c8a17457f 100644 --- a/packages/libraries/core/tsconfig.json +++ b/packages/libraries/core/tsconfig.json @@ -7,7 +7,7 @@ "declaration": true, "sourceMap": true, "experimentalDecorators": true, - "importHelpers": true, + "strictNullChecks": true, "noImplicitAny": true, "noEmitOnError": true, diff --git a/packages/theming/android-theme/tsconfig.json b/packages/theming/android-theme/tsconfig.json index 7e582b8e03..559954a6e9 100644 --- a/packages/theming/android-theme/tsconfig.json +++ b/packages/theming/android-theme/tsconfig.json @@ -1,8 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "outDir": "lib", - "resolveJsonModule": true - }, - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/packages/theming/apple-theme/tsconfig.json b/packages/theming/apple-theme/tsconfig.json index 7e582b8e03..559954a6e9 100644 --- a/packages/theming/apple-theme/tsconfig.json +++ b/packages/theming/apple-theme/tsconfig.json @@ -1,8 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "outDir": "lib", - "resolveJsonModule": true - }, - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/packages/theming/default-theme/tsconfig.json b/packages/theming/default-theme/tsconfig.json index 2897c1e1b9..559954a6e9 100644 --- a/packages/theming/default-theme/tsconfig.json +++ b/packages/theming/default-theme/tsconfig.json @@ -1,7 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "outDir": "lib" - }, - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/packages/theming/theme-tokens/tsconfig.json b/packages/theming/theme-tokens/tsconfig.json index 7e582b8e03..559954a6e9 100644 --- a/packages/theming/theme-tokens/tsconfig.json +++ b/packages/theming/theme-tokens/tsconfig.json @@ -1,8 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "outDir": "lib", - "resolveJsonModule": true - }, - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/packages/theming/theme-types/tsconfig.json b/packages/theming/theme-types/tsconfig.json index 2897c1e1b9..559954a6e9 100644 --- a/packages/theming/theme-types/tsconfig.json +++ b/packages/theming/theme-types/tsconfig.json @@ -1,7 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "outDir": "lib" - }, - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/packages/theming/theming-utils/tsconfig.json b/packages/theming/theming-utils/tsconfig.json index 2897c1e1b9..559954a6e9 100644 --- a/packages/theming/theming-utils/tsconfig.json +++ b/packages/theming/theming-utils/tsconfig.json @@ -1,7 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "outDir": "lib" - }, - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/packages/theming/win32-theme/tsconfig.json b/packages/theming/win32-theme/tsconfig.json index f17f80fe2e..559954a6e9 100644 --- a/packages/theming/win32-theme/tsconfig.json +++ b/packages/theming/win32-theme/tsconfig.json @@ -1,9 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "importHelpers": true, - "outDir": "lib", - "resolveJsonModule": true - }, - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/packages/utils/adapters/tsconfig.json b/packages/utils/adapters/tsconfig.json index 2897c1e1b9..559954a6e9 100644 --- a/packages/utils/adapters/tsconfig.json +++ b/packages/utils/adapters/tsconfig.json @@ -1,7 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "outDir": "lib" - }, - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/packages/utils/interactive-hooks/tsconfig.json b/packages/utils/interactive-hooks/tsconfig.json index feff7a3229..b59f552e9b 100644 --- a/packages/utils/interactive-hooks/tsconfig.json +++ b/packages/utils/interactive-hooks/tsconfig.json @@ -1,8 +1,5 @@ { "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "importHelpers": true, - "outDir": "lib" - }, + "include": ["src"] } diff --git a/packages/utils/styling/tsconfig.json b/packages/utils/styling/tsconfig.json index 2897c1e1b9..559954a6e9 100644 --- a/packages/utils/styling/tsconfig.json +++ b/packages/utils/styling/tsconfig.json @@ -1,7 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "outDir": "lib" - }, - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/packages/utils/test-tools/tsconfig.json b/packages/utils/test-tools/tsconfig.json index 2897c1e1b9..559954a6e9 100644 --- a/packages/utils/test-tools/tsconfig.json +++ b/packages/utils/test-tools/tsconfig.json @@ -1,7 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "outDir": "lib" - }, - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/packages/utils/tokens/tsconfig.json b/packages/utils/tokens/tsconfig.json index feff7a3229..559954a6e9 100644 --- a/packages/utils/tokens/tsconfig.json +++ b/packages/utils/tokens/tsconfig.json @@ -1,8 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "importHelpers": true, - "outDir": "lib" - }, - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/scripts/src/clean-all.js b/scripts/src/clean-all.js deleted file mode 100644 index 276818b2c1..0000000000 --- a/scripts/src/clean-all.js +++ /dev/null @@ -1,109 +0,0 @@ -// @ts-check - -const child_process = require('child_process'); -const fs = require('fs'); -const path = require('path'); -const os = require('os'); -// This script MUST NOT have any deps aside from Node built-ins, because it deletes all node_modules! - -/** @returns {Promise} */ -function prompt(question) { - return new Promise(resolve => { - process.stdin.resume(); - process.stdout.write(question); - - process.stdin.once('data', data => { - resolve(data.toString().trim()); - process.stdin.pause(); - }); - }); -} - -function deleteIfSymlink(itemPath) { - itemPath = path.resolve(itemPath); - try { - // Compare realpath since fs.statSync(itemPath).isSymbolicLink() doesn't work on Windows - if (fs.realpathSync(itemPath) !== itemPath) { - console.log(' Deleting symlink: ' + itemPath); - fs.unlinkSync(itemPath); - } - } catch (ex) { - console.warn(`Error running stat or unlink on ${itemPath}: ${ex}`); - } -} - -function deleteNodeModulesSymlinks(nodeModulesPath) { - if (!fs.existsSync(nodeModulesPath)) { - return; - } - // Check node_modules for symlinks and manually remove those - const modules = fs.readdirSync(nodeModulesPath); - for (const mod of modules) { - const modulePath = path.join(nodeModulesPath, mod); - if (mod[0] === '@' && !/[/\\]/.test(mod)) { - // Add any scoped modules to the list of things to check - modules.push(...fs.readdirSync(modulePath).map(m => path.join(mod, m))); - } else { - deleteIfSymlink(modulePath); - } - } -} - -function deleteSymlinks(parentFolder) { - const parentPath = path.join(process.cwd(), parentFolder); - if (!fs.existsSync(parentPath)) { - return; - } - for (const child of fs.readdirSync(parentPath)) { - const nodeModulesPath = path.join(parentPath, child, 'node_modules'); - deleteNodeModulesSymlinks(nodeModulesPath); - } -} - -async function run() { - if (!fs.existsSync(path.join(process.cwd(), '.git'))) { - console.error('Please run this script from the root of the Git repo'); - process.exit(1); - } - - const gitStatus = child_process - .execSync('git status --porcelain') - .toString() - .trim(); - - if (!process.argv.includes('-y')) { - console.log('WARNING: This command will PERMANENTLY DELETE all untracked files (such as build output and node_modules).'); - if (gitStatus) { - console.log('It will also revert uncommitted changes to the following files:'); - const lines = gitStatus.split(/\r?\n/g).map(line => ' ' + line); - console.log(lines.slice(0, 20).join(os.EOL)); - if (lines.length > 20) { - console.log(` ...and ${lines.length - 20} more`); - } - } - const answer = await prompt('Are you sure you want to proceed? (yes/no) '); - if (answer.toLowerCase()[0] !== 'y') { - return; - } - } - - console.log("Deleting symlinks from packages' node_modules..."); - deleteSymlinks('apps'); - deleteSymlinks('packages'); - - console.log('Deleting symlinks from rush temp files...'); - deleteNodeModulesSymlinks('common/temp/node_modules'); - deleteIfSymlink('common/temp/pnpm-local'); - - console.log(); - - console.log('Running "git clean -fdx" to remove all untracked files/folders (this may take awhile)...'); - child_process.execSync('git clean -fdx'); - console.log('Done!'); -} - -run().catch(ex => { - console.error('Caught error:'); - console.error(ex); - process.exit(1); -}); diff --git a/scripts/src/debug-metro-pack.js b/scripts/src/debug-metro-pack.js deleted file mode 100644 index 82cf5a69ab..0000000000 --- a/scripts/src/debug-metro-pack.js +++ /dev/null @@ -1,4 +0,0 @@ -const { metroPackTask } = require('./tasks/metro-pack'); - -const bundleName = process.argv[2]; -metroPackTask(bundleName)().then(() => console.log('Successful..')); diff --git a/scripts/tsconfig.json b/scripts/tsconfig.json index bf800e1a02..e2bb6b3324 100644 --- a/scripts/tsconfig.json +++ b/scripts/tsconfig.json @@ -1,6 +1,6 @@ { "compilerOptions": { - "outDir": "./lib", + "outDir": "lib", "target": "es2015", "types": ["node", "jest"], "module": "CommonJS", @@ -21,7 +21,8 @@ "skipDefaultLibCheck": true, "sourceMap": true, "jsx": "react", - "resolveJsonModule": true + "resolveJsonModule": true, + "importHelpers": true }, "baseUrl": ".", "paths": { diff --git a/tsconfig.json b/tsconfig.json index d5f207d12f..559954a6e9 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,6 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "outDir": "lib" - } + "extends": "@fluentui-react-native/scripts/tsconfig.json" } From 8194b4ddb1b0e90d3f7199ca62a5902ce1e9c0dd Mon Sep 17 00:00:00 2001 From: Saad Najmi Date: Wed, 29 Jan 2025 16:30:02 -0800 Subject: [PATCH 2/4] Change files --- ...tive-adapters-045cbb74-13f3-482e-b15c-90d151a03c29.json | 7 +++++++ ...android-theme-27e39f4d-d43a-43e1-b815-4dc24c030516.json | 7 +++++++ ...e-apple-theme-26d4febe-9154-4b89-9a80-3f3483cb2a74.json | 7 +++++++ ...native-avatar-fea96741-52c3-4cb3-bbd3-3c40deb2a8fd.json | 7 +++++++ ...-react-native-b7a17aec-e54b-4daf-8955-acc87fea365d.json | 7 +++++++ ...-native-badge-a6bf5983-b02c-4fbf-8d39-bda40219b1fa.json | 7 +++++++ ...native-button-3bed8f99-afdd-4844-bbfa-0fd7f6e1b8cd.json | 7 +++++++ ...ative-callout-aaa7945b-c070-48aa-b846-6471292178bc.json | 7 +++++++ ...tive-checkbox-ef6d783a-cafa-4efc-a9de-caba78d21215.json | 7 +++++++ ...t-native-chip-768b90e8-1183-4cb3-9dea-fb6df9198113.json | 7 +++++++ ...tive-codemods-419dcc9d-505b-48f8-b3d5-c59ed968fdfd.json | 7 +++++++ ...e-composition-4a6e854b-2e58-4ea3-8177-3d44293a0ae7.json | 7 +++++++ ...ntextual-menu-647fa326-6e27-4f31-ae19-0950d4929ffe.json | 7 +++++++ ...default-theme-1c76ffad-d06b-48e3-acd9-408afd3fed39.json | 7 +++++++ ...ative-divider-35978edd-c867-4347-8bf1-15a57e82863e.json | 7 +++++++ ...native-drawer-27024509-076c-41dd-b344-bd84699b25af.json | 7 +++++++ ...tive-dropdown-d61d16bc-e56f-4d5e-b5d2-22f019a21559.json | 7 +++++++ ...e-e2e-testing-d6709477-05ea-4a92-81bd-f70c7e5f80ae.json | 7 +++++++ ...ity-indicator-c92d3283-8468-445f-8e92-f1208189bc90.json | 7 +++++++ ...nce-additions-01bfe057-2ba5-4842-a07e-78418fcf1b47.json | 7 +++++++ ...mental-avatar-afe682ab-d817-4d7f-833c-04be76487359.json | 7 +++++++ ...ntal-checkbox-43abb380-814e-4659-bd8e-bc7b2ccb57d0.json | 7 +++++++ ...ntal-expander-fd30c933-5738-4de3-832b-ca13329a56a2.json | 7 +++++++ ...l-menu-button-7ee0aaa1-4a50-4a33-b91d-40c1b8503631.json | 7 +++++++ ...e-date-picker-63b091c3-726e-4c16-9fc8-5d331891a403.json | 7 +++++++ ...-font-metrics-177b4c43-31bc-48ad-a067-6125364de8b4.json | 7 +++++++ ...mental-shadow-bc3c727c-c6ba-443b-89f8-451c6c88d503.json | 7 +++++++ ...ental-shimmer-df488d8e-6efa-4045-8139-f7ac880432bb.json | 7 +++++++ ...cus-trap-zone-329d3cbf-1cbd-43b9-b026-2f19541b3912.json | 7 +++++++ ...ve-focus-zone-083b673e-6208-47d4-a45c-38ff9f933bce.json | 7 +++++++ ...ive-framework-d42067e0-dc8f-411a-b592-64e53307e49a.json | 7 +++++++ ...t-native-icon-ff5dc856-f4cf-4bcc-bb91-842e5c3f24db.json | 7 +++++++ ...mutable-merge-161ca90f-2c20-4cd9-807e-b72e29b14924.json | 7 +++++++ ...-native-input-ab1f61d1-6b8c-4fae-9ea0-205cada10ec3.json | 7 +++++++ ...ractive-hooks-0444d30f-ee81-430d-b6d4-f299da215fd5.json | 7 +++++++ ...t-native-link-3fa3a8a0-8028-44bd-aeec-e68cf8011758.json | 7 +++++++ ...ve-memo-cache-4c5a4620-6725-4e3a-b8a8-035096c95d9b.json | 7 +++++++ ...t-native-menu-4f083950-a6d9-4918-849a-189869ab7299.json | 7 +++++++ ...e-menu-button-66fd32dc-e1da-4def-b9a9-b28275d8ff52.json | 7 +++++++ ...e-merge-props-aab4e96f-8e1d-4c7d-af87-1716ed21c29d.json | 7 +++++++ ...-notification-c0b352f9-bd3a-4c9d-81db-2bdac8be3f52.json | 7 +++++++ ...tive-overflow-8b33f435-3c42-4c07-b7d0-8d8b35bccc58.json | 7 +++++++ ...ative-persona-7bc2c531-36f2-47d9-90e8-4c5ddbf1e15b.json | 7 +++++++ ...-persona-coin-20a93872-c86a-42eb-b09d-31f0db68fa36.json | 7 +++++++ ...ative-popover-b7d3ddb3-6c89-4f3b-b636-7ad6fcaa36e3.json | 7 +++++++ ...ive-pressable-0ca02fbb-3067-4a04-b4d3-c302271d383e.json | 7 +++++++ ...e-radio-group-c08ae8de-597f-425e-8be7-09fe474150ff.json | 7 +++++++ ...ive-separator-9f59161c-114e-4f2f-95b9-3a61952556fd.json | 7 +++++++ ...ative-spinner-2528dc94-99b0-4098-97c5-b20bd59efcfc.json | 7 +++++++ ...-native-stack-e12a94a6-db3d-4067-9061-11d39b4121f4.json | 7 +++++++ ...styling-utils-d7f2b776-cda8-41b2-9c62-6cb05fdf6e57.json | 7 +++++++ ...native-switch-890dcefb-4903-4270-8a62-c249eb92e41c.json | 7 +++++++ ...ative-tablist-d70c07bd-04bc-44a9-9704-e3ffd9ebce23.json | 7 +++++++ ...native-tester-78a8381f-85c9-4f46-a6df-57dce95003e9.json | 7 +++++++ ...-tester-win32-d3c1e864-7c52-4c06-b970-ea1265d1f575.json | 7 +++++++ ...t-native-text-4a605e6c-069b-4cae-997e-d4ad6cfe1165.json | 7 +++++++ ...-native-theme-2ec0752a-4225-4619-8dea-bc787ea904d0.json | 7 +++++++ ...-theme-tokens-e7ca6079-adbd-48ad-be20-c0f217336bd4.json | 7 +++++++ ...e-theme-types-c3a315dc-c05e-4034-8cee-f31f47bd4f4e.json | 7 +++++++ ...ed-stylesheet-93318280-f9a2-4f44-a112-eea29dea2e19.json | 7 +++++++ ...theming-utils-69706e8d-617a-4b5b-9d2c-5b8ba81faecb.json | 7 +++++++ ...native-tokens-e55b9199-7a9f-469c-8046-7ac0fc6a2082.json | 7 +++++++ ...ative-tooltip-390a4fd3-10b4-47c5-ad58-ef05699c2243.json | 7 +++++++ ...tive-use-slot-af9750ce-aecc-43ef-99c1-3b43d6c3f10a.json | 7 +++++++ ...ive-use-slots-6c2fe33f-0a26-4014-82bd-0878e8d0c4b2.json | 7 +++++++ ...e-use-styling-222ebd4e-e84e-4259-a40f-ae3a142924f8.json | 7 +++++++ ...ve-use-tokens-d50f06dc-9539-429f-87f8-c0b7d2dbcd97.json | 7 +++++++ ...vibrancy-view-32d94c4b-922a-4e35-bc01-1dc5bedf1a07.json | 7 +++++++ ...e-win32-theme-f4cf4f58-1fd4-4d61-bacf-7c541a2abb88.json | 7 +++++++ ...on-composable-bf3bfb50-b6ca-45f4-a5f7-338fcb99ea4c.json | 7 +++++++ ...ation-compose-5433b2f6-143c-4ce1-a173-4832e7af748d.json | 7 +++++++ ...tion-settings-fde5a091-142e-4464-88ee-4d3a72dd5020.json | 7 +++++++ ...dation-tokens-14570d65-4285-40ef-bf9e-f09090f9ed50.json | 7 +++++++ ...heme-registry-7350bd5b-d2f5-45e9-874a-ac67defb6864.json | 7 +++++++ ...emed-settings-d03f981a-1e1a-4bb2-b191-f6319deeddf1.json | 7 +++++++ ...-theming-ramp-7f4de3ff-4d6f-4bdd-9351-57f960a22be3.json | 7 +++++++ ...-react-native-28c14d2a-7d53-413b-9159-3409755c17f7.json | 7 +++++++ 77 files changed, 539 insertions(+) create mode 100644 change/@fluentui-react-native-adapters-045cbb74-13f3-482e-b15c-90d151a03c29.json create mode 100644 change/@fluentui-react-native-android-theme-27e39f4d-d43a-43e1-b815-4dc24c030516.json create mode 100644 change/@fluentui-react-native-apple-theme-26d4febe-9154-4b89-9a80-3f3483cb2a74.json create mode 100644 change/@fluentui-react-native-avatar-fea96741-52c3-4cb3-bbd3-3c40deb2a8fd.json create mode 100644 change/@fluentui-react-native-b7a17aec-e54b-4daf-8955-acc87fea365d.json create mode 100644 change/@fluentui-react-native-badge-a6bf5983-b02c-4fbf-8d39-bda40219b1fa.json create mode 100644 change/@fluentui-react-native-button-3bed8f99-afdd-4844-bbfa-0fd7f6e1b8cd.json create mode 100644 change/@fluentui-react-native-callout-aaa7945b-c070-48aa-b846-6471292178bc.json create mode 100644 change/@fluentui-react-native-checkbox-ef6d783a-cafa-4efc-a9de-caba78d21215.json create mode 100644 change/@fluentui-react-native-chip-768b90e8-1183-4cb3-9dea-fb6df9198113.json create mode 100644 change/@fluentui-react-native-codemods-419dcc9d-505b-48f8-b3d5-c59ed968fdfd.json create mode 100644 change/@fluentui-react-native-composition-4a6e854b-2e58-4ea3-8177-3d44293a0ae7.json create mode 100644 change/@fluentui-react-native-contextual-menu-647fa326-6e27-4f31-ae19-0950d4929ffe.json create mode 100644 change/@fluentui-react-native-default-theme-1c76ffad-d06b-48e3-acd9-408afd3fed39.json create mode 100644 change/@fluentui-react-native-divider-35978edd-c867-4347-8bf1-15a57e82863e.json create mode 100644 change/@fluentui-react-native-drawer-27024509-076c-41dd-b344-bd84699b25af.json create mode 100644 change/@fluentui-react-native-dropdown-d61d16bc-e56f-4d5e-b5d2-22f019a21559.json create mode 100644 change/@fluentui-react-native-e2e-testing-d6709477-05ea-4a92-81bd-f70c7e5f80ae.json create mode 100644 change/@fluentui-react-native-experimental-activity-indicator-c92d3283-8468-445f-8e92-f1208189bc90.json create mode 100644 change/@fluentui-react-native-experimental-appearance-additions-01bfe057-2ba5-4842-a07e-78418fcf1b47.json create mode 100644 change/@fluentui-react-native-experimental-avatar-afe682ab-d817-4d7f-833c-04be76487359.json create mode 100644 change/@fluentui-react-native-experimental-checkbox-43abb380-814e-4659-bd8e-bc7b2ccb57d0.json create mode 100644 change/@fluentui-react-native-experimental-expander-fd30c933-5738-4de3-832b-ca13329a56a2.json create mode 100644 change/@fluentui-react-native-experimental-menu-button-7ee0aaa1-4a50-4a33-b91d-40c1b8503631.json create mode 100644 change/@fluentui-react-native-experimental-native-date-picker-63b091c3-726e-4c16-9fc8-5d331891a403.json create mode 100644 change/@fluentui-react-native-experimental-native-font-metrics-177b4c43-31bc-48ad-a067-6125364de8b4.json create mode 100644 change/@fluentui-react-native-experimental-shadow-bc3c727c-c6ba-443b-89f8-451c6c88d503.json create mode 100644 change/@fluentui-react-native-experimental-shimmer-df488d8e-6efa-4045-8139-f7ac880432bb.json create mode 100644 change/@fluentui-react-native-focus-trap-zone-329d3cbf-1cbd-43b9-b026-2f19541b3912.json create mode 100644 change/@fluentui-react-native-focus-zone-083b673e-6208-47d4-a45c-38ff9f933bce.json create mode 100644 change/@fluentui-react-native-framework-d42067e0-dc8f-411a-b592-64e53307e49a.json create mode 100644 change/@fluentui-react-native-icon-ff5dc856-f4cf-4bcc-bb91-842e5c3f24db.json create mode 100644 change/@fluentui-react-native-immutable-merge-161ca90f-2c20-4cd9-807e-b72e29b14924.json create mode 100644 change/@fluentui-react-native-input-ab1f61d1-6b8c-4fae-9ea0-205cada10ec3.json create mode 100644 change/@fluentui-react-native-interactive-hooks-0444d30f-ee81-430d-b6d4-f299da215fd5.json create mode 100644 change/@fluentui-react-native-link-3fa3a8a0-8028-44bd-aeec-e68cf8011758.json create mode 100644 change/@fluentui-react-native-memo-cache-4c5a4620-6725-4e3a-b8a8-035096c95d9b.json create mode 100644 change/@fluentui-react-native-menu-4f083950-a6d9-4918-849a-189869ab7299.json create mode 100644 change/@fluentui-react-native-menu-button-66fd32dc-e1da-4def-b9a9-b28275d8ff52.json create mode 100644 change/@fluentui-react-native-merge-props-aab4e96f-8e1d-4c7d-af87-1716ed21c29d.json create mode 100644 change/@fluentui-react-native-notification-c0b352f9-bd3a-4c9d-81db-2bdac8be3f52.json create mode 100644 change/@fluentui-react-native-overflow-8b33f435-3c42-4c07-b7d0-8d8b35bccc58.json create mode 100644 change/@fluentui-react-native-persona-7bc2c531-36f2-47d9-90e8-4c5ddbf1e15b.json create mode 100644 change/@fluentui-react-native-persona-coin-20a93872-c86a-42eb-b09d-31f0db68fa36.json create mode 100644 change/@fluentui-react-native-popover-b7d3ddb3-6c89-4f3b-b636-7ad6fcaa36e3.json create mode 100644 change/@fluentui-react-native-pressable-0ca02fbb-3067-4a04-b4d3-c302271d383e.json create mode 100644 change/@fluentui-react-native-radio-group-c08ae8de-597f-425e-8be7-09fe474150ff.json create mode 100644 change/@fluentui-react-native-separator-9f59161c-114e-4f2f-95b9-3a61952556fd.json create mode 100644 change/@fluentui-react-native-spinner-2528dc94-99b0-4098-97c5-b20bd59efcfc.json create mode 100644 change/@fluentui-react-native-stack-e12a94a6-db3d-4067-9061-11d39b4121f4.json create mode 100644 change/@fluentui-react-native-styling-utils-d7f2b776-cda8-41b2-9c62-6cb05fdf6e57.json create mode 100644 change/@fluentui-react-native-switch-890dcefb-4903-4270-8a62-c249eb92e41c.json create mode 100644 change/@fluentui-react-native-tablist-d70c07bd-04bc-44a9-9704-e3ffd9ebce23.json create mode 100644 change/@fluentui-react-native-tester-78a8381f-85c9-4f46-a6df-57dce95003e9.json create mode 100644 change/@fluentui-react-native-tester-win32-d3c1e864-7c52-4c06-b970-ea1265d1f575.json create mode 100644 change/@fluentui-react-native-text-4a605e6c-069b-4cae-997e-d4ad6cfe1165.json create mode 100644 change/@fluentui-react-native-theme-2ec0752a-4225-4619-8dea-bc787ea904d0.json create mode 100644 change/@fluentui-react-native-theme-tokens-e7ca6079-adbd-48ad-be20-c0f217336bd4.json create mode 100644 change/@fluentui-react-native-theme-types-c3a315dc-c05e-4034-8cee-f31f47bd4f4e.json create mode 100644 change/@fluentui-react-native-themed-stylesheet-93318280-f9a2-4f44-a112-eea29dea2e19.json create mode 100644 change/@fluentui-react-native-theming-utils-69706e8d-617a-4b5b-9d2c-5b8ba81faecb.json create mode 100644 change/@fluentui-react-native-tokens-e55b9199-7a9f-469c-8046-7ac0fc6a2082.json create mode 100644 change/@fluentui-react-native-tooltip-390a4fd3-10b4-47c5-ad58-ef05699c2243.json create mode 100644 change/@fluentui-react-native-use-slot-af9750ce-aecc-43ef-99c1-3b43d6c3f10a.json create mode 100644 change/@fluentui-react-native-use-slots-6c2fe33f-0a26-4014-82bd-0878e8d0c4b2.json create mode 100644 change/@fluentui-react-native-use-styling-222ebd4e-e84e-4259-a40f-ae3a142924f8.json create mode 100644 change/@fluentui-react-native-use-tokens-d50f06dc-9539-429f-87f8-c0b7d2dbcd97.json create mode 100644 change/@fluentui-react-native-vibrancy-view-32d94c4b-922a-4e35-bc01-1dc5bedf1a07.json create mode 100644 change/@fluentui-react-native-win32-theme-f4cf4f58-1fd4-4d61-bacf-7c541a2abb88.json create mode 100644 change/@uifabricshared-foundation-composable-bf3bfb50-b6ca-45f4-a5f7-338fcb99ea4c.json create mode 100644 change/@uifabricshared-foundation-compose-5433b2f6-143c-4ce1-a173-4832e7af748d.json create mode 100644 change/@uifabricshared-foundation-settings-fde5a091-142e-4464-88ee-4d3a72dd5020.json create mode 100644 change/@uifabricshared-foundation-tokens-14570d65-4285-40ef-bf9e-f09090f9ed50.json create mode 100644 change/@uifabricshared-theme-registry-7350bd5b-d2f5-45e9-874a-ac67defb6864.json create mode 100644 change/@uifabricshared-themed-settings-d03f981a-1e1a-4bb2-b191-f6319deeddf1.json create mode 100644 change/@uifabricshared-theming-ramp-7f4de3ff-4d6f-4bdd-9351-57f960a22be3.json create mode 100644 change/@uifabricshared-theming-react-native-28c14d2a-7d53-413b-9159-3409755c17f7.json diff --git a/change/@fluentui-react-native-adapters-045cbb74-13f3-482e-b15c-90d151a03c29.json b/change/@fluentui-react-native-adapters-045cbb74-13f3-482e-b15c-90d151a03c29.json new file mode 100644 index 0000000000..7ac9a33249 --- /dev/null +++ b/change/@fluentui-react-native-adapters-045cbb74-13f3-482e-b15c-90d151a03c29.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui-react-native/adapters", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-android-theme-27e39f4d-d43a-43e1-b815-4dc24c030516.json b/change/@fluentui-react-native-android-theme-27e39f4d-d43a-43e1-b815-4dc24c030516.json new file mode 100644 index 0000000000..fe9f8c768c --- /dev/null +++ b/change/@fluentui-react-native-android-theme-27e39f4d-d43a-43e1-b815-4dc24c030516.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui-react-native/android-theme", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-apple-theme-26d4febe-9154-4b89-9a80-3f3483cb2a74.json b/change/@fluentui-react-native-apple-theme-26d4febe-9154-4b89-9a80-3f3483cb2a74.json new file mode 100644 index 0000000000..2e9d3596d7 --- /dev/null +++ b/change/@fluentui-react-native-apple-theme-26d4febe-9154-4b89-9a80-3f3483cb2a74.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui-react-native/apple-theme", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-avatar-fea96741-52c3-4cb3-bbd3-3c40deb2a8fd.json b/change/@fluentui-react-native-avatar-fea96741-52c3-4cb3-bbd3-3c40deb2a8fd.json new file mode 100644 index 0000000000..59545766e4 --- /dev/null +++ b/change/@fluentui-react-native-avatar-fea96741-52c3-4cb3-bbd3-3c40deb2a8fd.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui-react-native/avatar", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-b7a17aec-e54b-4daf-8955-acc87fea365d.json b/change/@fluentui-react-native-b7a17aec-e54b-4daf-8955-acc87fea365d.json new file mode 100644 index 0000000000..a75f37b3e9 --- /dev/null +++ b/change/@fluentui-react-native-b7a17aec-e54b-4daf-8955-acc87fea365d.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui/react-native", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-badge-a6bf5983-b02c-4fbf-8d39-bda40219b1fa.json b/change/@fluentui-react-native-badge-a6bf5983-b02c-4fbf-8d39-bda40219b1fa.json new file mode 100644 index 0000000000..c77967ae99 --- /dev/null +++ b/change/@fluentui-react-native-badge-a6bf5983-b02c-4fbf-8d39-bda40219b1fa.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui-react-native/badge", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-button-3bed8f99-afdd-4844-bbfa-0fd7f6e1b8cd.json b/change/@fluentui-react-native-button-3bed8f99-afdd-4844-bbfa-0fd7f6e1b8cd.json new file mode 100644 index 0000000000..11dbef526c --- /dev/null +++ b/change/@fluentui-react-native-button-3bed8f99-afdd-4844-bbfa-0fd7f6e1b8cd.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui-react-native/button", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-callout-aaa7945b-c070-48aa-b846-6471292178bc.json b/change/@fluentui-react-native-callout-aaa7945b-c070-48aa-b846-6471292178bc.json new file mode 100644 index 0000000000..1f2cfe24a4 --- /dev/null +++ b/change/@fluentui-react-native-callout-aaa7945b-c070-48aa-b846-6471292178bc.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui-react-native/callout", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-checkbox-ef6d783a-cafa-4efc-a9de-caba78d21215.json b/change/@fluentui-react-native-checkbox-ef6d783a-cafa-4efc-a9de-caba78d21215.json new file mode 100644 index 0000000000..442e69cfa4 --- /dev/null +++ b/change/@fluentui-react-native-checkbox-ef6d783a-cafa-4efc-a9de-caba78d21215.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui-react-native/checkbox", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-chip-768b90e8-1183-4cb3-9dea-fb6df9198113.json b/change/@fluentui-react-native-chip-768b90e8-1183-4cb3-9dea-fb6df9198113.json new file mode 100644 index 0000000000..7901fc3dff --- /dev/null +++ b/change/@fluentui-react-native-chip-768b90e8-1183-4cb3-9dea-fb6df9198113.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui-react-native/chip", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-codemods-419dcc9d-505b-48f8-b3d5-c59ed968fdfd.json b/change/@fluentui-react-native-codemods-419dcc9d-505b-48f8-b3d5-c59ed968fdfd.json new file mode 100644 index 0000000000..13dce6bf88 --- /dev/null +++ b/change/@fluentui-react-native-codemods-419dcc9d-505b-48f8-b3d5-c59ed968fdfd.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui-react-native/codemods", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-composition-4a6e854b-2e58-4ea3-8177-3d44293a0ae7.json b/change/@fluentui-react-native-composition-4a6e854b-2e58-4ea3-8177-3d44293a0ae7.json new file mode 100644 index 0000000000..e99d750602 --- /dev/null +++ b/change/@fluentui-react-native-composition-4a6e854b-2e58-4ea3-8177-3d44293a0ae7.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui-react-native/composition", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-contextual-menu-647fa326-6e27-4f31-ae19-0950d4929ffe.json b/change/@fluentui-react-native-contextual-menu-647fa326-6e27-4f31-ae19-0950d4929ffe.json new file mode 100644 index 0000000000..6cccf1e538 --- /dev/null +++ b/change/@fluentui-react-native-contextual-menu-647fa326-6e27-4f31-ae19-0950d4929ffe.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui-react-native/contextual-menu", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-default-theme-1c76ffad-d06b-48e3-acd9-408afd3fed39.json b/change/@fluentui-react-native-default-theme-1c76ffad-d06b-48e3-acd9-408afd3fed39.json new file mode 100644 index 0000000000..8b1719f472 --- /dev/null +++ b/change/@fluentui-react-native-default-theme-1c76ffad-d06b-48e3-acd9-408afd3fed39.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui-react-native/default-theme", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-divider-35978edd-c867-4347-8bf1-15a57e82863e.json b/change/@fluentui-react-native-divider-35978edd-c867-4347-8bf1-15a57e82863e.json new file mode 100644 index 0000000000..1f124a2772 --- /dev/null +++ b/change/@fluentui-react-native-divider-35978edd-c867-4347-8bf1-15a57e82863e.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui-react-native/divider", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-drawer-27024509-076c-41dd-b344-bd84699b25af.json b/change/@fluentui-react-native-drawer-27024509-076c-41dd-b344-bd84699b25af.json new file mode 100644 index 0000000000..f45c06a569 --- /dev/null +++ b/change/@fluentui-react-native-drawer-27024509-076c-41dd-b344-bd84699b25af.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui-react-native/drawer", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-dropdown-d61d16bc-e56f-4d5e-b5d2-22f019a21559.json b/change/@fluentui-react-native-dropdown-d61d16bc-e56f-4d5e-b5d2-22f019a21559.json new file mode 100644 index 0000000000..7e6c287956 --- /dev/null +++ b/change/@fluentui-react-native-dropdown-d61d16bc-e56f-4d5e-b5d2-22f019a21559.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui-react-native/dropdown", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-e2e-testing-d6709477-05ea-4a92-81bd-f70c7e5f80ae.json b/change/@fluentui-react-native-e2e-testing-d6709477-05ea-4a92-81bd-f70c7e5f80ae.json new file mode 100644 index 0000000000..f27591281e --- /dev/null +++ b/change/@fluentui-react-native-e2e-testing-d6709477-05ea-4a92-81bd-f70c7e5f80ae.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui-react-native/e2e-testing", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-experimental-activity-indicator-c92d3283-8468-445f-8e92-f1208189bc90.json b/change/@fluentui-react-native-experimental-activity-indicator-c92d3283-8468-445f-8e92-f1208189bc90.json new file mode 100644 index 0000000000..fed92cc898 --- /dev/null +++ b/change/@fluentui-react-native-experimental-activity-indicator-c92d3283-8468-445f-8e92-f1208189bc90.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui-react-native/experimental-activity-indicator", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-experimental-appearance-additions-01bfe057-2ba5-4842-a07e-78418fcf1b47.json b/change/@fluentui-react-native-experimental-appearance-additions-01bfe057-2ba5-4842-a07e-78418fcf1b47.json new file mode 100644 index 0000000000..0f326f0743 --- /dev/null +++ b/change/@fluentui-react-native-experimental-appearance-additions-01bfe057-2ba5-4842-a07e-78418fcf1b47.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui-react-native/experimental-appearance-additions", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-experimental-avatar-afe682ab-d817-4d7f-833c-04be76487359.json b/change/@fluentui-react-native-experimental-avatar-afe682ab-d817-4d7f-833c-04be76487359.json new file mode 100644 index 0000000000..a365da6244 --- /dev/null +++ b/change/@fluentui-react-native-experimental-avatar-afe682ab-d817-4d7f-833c-04be76487359.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui-react-native/experimental-avatar", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-experimental-checkbox-43abb380-814e-4659-bd8e-bc7b2ccb57d0.json b/change/@fluentui-react-native-experimental-checkbox-43abb380-814e-4659-bd8e-bc7b2ccb57d0.json new file mode 100644 index 0000000000..aec15b70ca --- /dev/null +++ b/change/@fluentui-react-native-experimental-checkbox-43abb380-814e-4659-bd8e-bc7b2ccb57d0.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui-react-native/experimental-checkbox", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-experimental-expander-fd30c933-5738-4de3-832b-ca13329a56a2.json b/change/@fluentui-react-native-experimental-expander-fd30c933-5738-4de3-832b-ca13329a56a2.json new file mode 100644 index 0000000000..ba04f7c58b --- /dev/null +++ b/change/@fluentui-react-native-experimental-expander-fd30c933-5738-4de3-832b-ca13329a56a2.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui-react-native/experimental-expander", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-experimental-menu-button-7ee0aaa1-4a50-4a33-b91d-40c1b8503631.json b/change/@fluentui-react-native-experimental-menu-button-7ee0aaa1-4a50-4a33-b91d-40c1b8503631.json new file mode 100644 index 0000000000..82df763e14 --- /dev/null +++ b/change/@fluentui-react-native-experimental-menu-button-7ee0aaa1-4a50-4a33-b91d-40c1b8503631.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui-react-native/experimental-menu-button", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-experimental-native-date-picker-63b091c3-726e-4c16-9fc8-5d331891a403.json b/change/@fluentui-react-native-experimental-native-date-picker-63b091c3-726e-4c16-9fc8-5d331891a403.json new file mode 100644 index 0000000000..62a38199ee --- /dev/null +++ b/change/@fluentui-react-native-experimental-native-date-picker-63b091c3-726e-4c16-9fc8-5d331891a403.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui-react-native/experimental-native-date-picker", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-experimental-native-font-metrics-177b4c43-31bc-48ad-a067-6125364de8b4.json b/change/@fluentui-react-native-experimental-native-font-metrics-177b4c43-31bc-48ad-a067-6125364de8b4.json new file mode 100644 index 0000000000..ac27865bbd --- /dev/null +++ b/change/@fluentui-react-native-experimental-native-font-metrics-177b4c43-31bc-48ad-a067-6125364de8b4.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui-react-native/experimental-native-font-metrics", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-experimental-shadow-bc3c727c-c6ba-443b-89f8-451c6c88d503.json b/change/@fluentui-react-native-experimental-shadow-bc3c727c-c6ba-443b-89f8-451c6c88d503.json new file mode 100644 index 0000000000..ed39a6a93b --- /dev/null +++ b/change/@fluentui-react-native-experimental-shadow-bc3c727c-c6ba-443b-89f8-451c6c88d503.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui-react-native/experimental-shadow", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-experimental-shimmer-df488d8e-6efa-4045-8139-f7ac880432bb.json b/change/@fluentui-react-native-experimental-shimmer-df488d8e-6efa-4045-8139-f7ac880432bb.json new file mode 100644 index 0000000000..3055638300 --- /dev/null +++ b/change/@fluentui-react-native-experimental-shimmer-df488d8e-6efa-4045-8139-f7ac880432bb.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui-react-native/experimental-shimmer", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-focus-trap-zone-329d3cbf-1cbd-43b9-b026-2f19541b3912.json b/change/@fluentui-react-native-focus-trap-zone-329d3cbf-1cbd-43b9-b026-2f19541b3912.json new file mode 100644 index 0000000000..f2d86470e5 --- /dev/null +++ b/change/@fluentui-react-native-focus-trap-zone-329d3cbf-1cbd-43b9-b026-2f19541b3912.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui-react-native/focus-trap-zone", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-focus-zone-083b673e-6208-47d4-a45c-38ff9f933bce.json b/change/@fluentui-react-native-focus-zone-083b673e-6208-47d4-a45c-38ff9f933bce.json new file mode 100644 index 0000000000..1d330475f1 --- /dev/null +++ b/change/@fluentui-react-native-focus-zone-083b673e-6208-47d4-a45c-38ff9f933bce.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui-react-native/focus-zone", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-framework-d42067e0-dc8f-411a-b592-64e53307e49a.json b/change/@fluentui-react-native-framework-d42067e0-dc8f-411a-b592-64e53307e49a.json new file mode 100644 index 0000000000..bf88b936ab --- /dev/null +++ b/change/@fluentui-react-native-framework-d42067e0-dc8f-411a-b592-64e53307e49a.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui-react-native/framework", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-icon-ff5dc856-f4cf-4bcc-bb91-842e5c3f24db.json b/change/@fluentui-react-native-icon-ff5dc856-f4cf-4bcc-bb91-842e5c3f24db.json new file mode 100644 index 0000000000..f7f7fa7a5c --- /dev/null +++ b/change/@fluentui-react-native-icon-ff5dc856-f4cf-4bcc-bb91-842e5c3f24db.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui-react-native/icon", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-immutable-merge-161ca90f-2c20-4cd9-807e-b72e29b14924.json b/change/@fluentui-react-native-immutable-merge-161ca90f-2c20-4cd9-807e-b72e29b14924.json new file mode 100644 index 0000000000..0a31b17be7 --- /dev/null +++ b/change/@fluentui-react-native-immutable-merge-161ca90f-2c20-4cd9-807e-b72e29b14924.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui-react-native/immutable-merge", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-input-ab1f61d1-6b8c-4fae-9ea0-205cada10ec3.json b/change/@fluentui-react-native-input-ab1f61d1-6b8c-4fae-9ea0-205cada10ec3.json new file mode 100644 index 0000000000..a9f810927f --- /dev/null +++ b/change/@fluentui-react-native-input-ab1f61d1-6b8c-4fae-9ea0-205cada10ec3.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui-react-native/input", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-interactive-hooks-0444d30f-ee81-430d-b6d4-f299da215fd5.json b/change/@fluentui-react-native-interactive-hooks-0444d30f-ee81-430d-b6d4-f299da215fd5.json new file mode 100644 index 0000000000..95ed94dd70 --- /dev/null +++ b/change/@fluentui-react-native-interactive-hooks-0444d30f-ee81-430d-b6d4-f299da215fd5.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui-react-native/interactive-hooks", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-link-3fa3a8a0-8028-44bd-aeec-e68cf8011758.json b/change/@fluentui-react-native-link-3fa3a8a0-8028-44bd-aeec-e68cf8011758.json new file mode 100644 index 0000000000..7b16171d25 --- /dev/null +++ b/change/@fluentui-react-native-link-3fa3a8a0-8028-44bd-aeec-e68cf8011758.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui-react-native/link", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-memo-cache-4c5a4620-6725-4e3a-b8a8-035096c95d9b.json b/change/@fluentui-react-native-memo-cache-4c5a4620-6725-4e3a-b8a8-035096c95d9b.json new file mode 100644 index 0000000000..2a12855786 --- /dev/null +++ b/change/@fluentui-react-native-memo-cache-4c5a4620-6725-4e3a-b8a8-035096c95d9b.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui-react-native/memo-cache", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-menu-4f083950-a6d9-4918-849a-189869ab7299.json b/change/@fluentui-react-native-menu-4f083950-a6d9-4918-849a-189869ab7299.json new file mode 100644 index 0000000000..c6f6f31d42 --- /dev/null +++ b/change/@fluentui-react-native-menu-4f083950-a6d9-4918-849a-189869ab7299.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui-react-native/menu", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-menu-button-66fd32dc-e1da-4def-b9a9-b28275d8ff52.json b/change/@fluentui-react-native-menu-button-66fd32dc-e1da-4def-b9a9-b28275d8ff52.json new file mode 100644 index 0000000000..5d4dac4b8c --- /dev/null +++ b/change/@fluentui-react-native-menu-button-66fd32dc-e1da-4def-b9a9-b28275d8ff52.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui-react-native/menu-button", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-merge-props-aab4e96f-8e1d-4c7d-af87-1716ed21c29d.json b/change/@fluentui-react-native-merge-props-aab4e96f-8e1d-4c7d-af87-1716ed21c29d.json new file mode 100644 index 0000000000..375bf7c891 --- /dev/null +++ b/change/@fluentui-react-native-merge-props-aab4e96f-8e1d-4c7d-af87-1716ed21c29d.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui-react-native/merge-props", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-notification-c0b352f9-bd3a-4c9d-81db-2bdac8be3f52.json b/change/@fluentui-react-native-notification-c0b352f9-bd3a-4c9d-81db-2bdac8be3f52.json new file mode 100644 index 0000000000..4970c8c32d --- /dev/null +++ b/change/@fluentui-react-native-notification-c0b352f9-bd3a-4c9d-81db-2bdac8be3f52.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui-react-native/notification", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-overflow-8b33f435-3c42-4c07-b7d0-8d8b35bccc58.json b/change/@fluentui-react-native-overflow-8b33f435-3c42-4c07-b7d0-8d8b35bccc58.json new file mode 100644 index 0000000000..e44663d02d --- /dev/null +++ b/change/@fluentui-react-native-overflow-8b33f435-3c42-4c07-b7d0-8d8b35bccc58.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui-react-native/overflow", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-persona-7bc2c531-36f2-47d9-90e8-4c5ddbf1e15b.json b/change/@fluentui-react-native-persona-7bc2c531-36f2-47d9-90e8-4c5ddbf1e15b.json new file mode 100644 index 0000000000..3ab849d8be --- /dev/null +++ b/change/@fluentui-react-native-persona-7bc2c531-36f2-47d9-90e8-4c5ddbf1e15b.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui-react-native/persona", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-persona-coin-20a93872-c86a-42eb-b09d-31f0db68fa36.json b/change/@fluentui-react-native-persona-coin-20a93872-c86a-42eb-b09d-31f0db68fa36.json new file mode 100644 index 0000000000..a24d093767 --- /dev/null +++ b/change/@fluentui-react-native-persona-coin-20a93872-c86a-42eb-b09d-31f0db68fa36.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui-react-native/persona-coin", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-popover-b7d3ddb3-6c89-4f3b-b636-7ad6fcaa36e3.json b/change/@fluentui-react-native-popover-b7d3ddb3-6c89-4f3b-b636-7ad6fcaa36e3.json new file mode 100644 index 0000000000..f92d492d02 --- /dev/null +++ b/change/@fluentui-react-native-popover-b7d3ddb3-6c89-4f3b-b636-7ad6fcaa36e3.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui-react-native/popover", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-pressable-0ca02fbb-3067-4a04-b4d3-c302271d383e.json b/change/@fluentui-react-native-pressable-0ca02fbb-3067-4a04-b4d3-c302271d383e.json new file mode 100644 index 0000000000..36e64cbd78 --- /dev/null +++ b/change/@fluentui-react-native-pressable-0ca02fbb-3067-4a04-b4d3-c302271d383e.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui-react-native/pressable", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-radio-group-c08ae8de-597f-425e-8be7-09fe474150ff.json b/change/@fluentui-react-native-radio-group-c08ae8de-597f-425e-8be7-09fe474150ff.json new file mode 100644 index 0000000000..3b066b45c4 --- /dev/null +++ b/change/@fluentui-react-native-radio-group-c08ae8de-597f-425e-8be7-09fe474150ff.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui-react-native/radio-group", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-separator-9f59161c-114e-4f2f-95b9-3a61952556fd.json b/change/@fluentui-react-native-separator-9f59161c-114e-4f2f-95b9-3a61952556fd.json new file mode 100644 index 0000000000..4bec5f61d2 --- /dev/null +++ b/change/@fluentui-react-native-separator-9f59161c-114e-4f2f-95b9-3a61952556fd.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui-react-native/separator", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-spinner-2528dc94-99b0-4098-97c5-b20bd59efcfc.json b/change/@fluentui-react-native-spinner-2528dc94-99b0-4098-97c5-b20bd59efcfc.json new file mode 100644 index 0000000000..247f154a0f --- /dev/null +++ b/change/@fluentui-react-native-spinner-2528dc94-99b0-4098-97c5-b20bd59efcfc.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui-react-native/spinner", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-stack-e12a94a6-db3d-4067-9061-11d39b4121f4.json b/change/@fluentui-react-native-stack-e12a94a6-db3d-4067-9061-11d39b4121f4.json new file mode 100644 index 0000000000..cffa4d682c --- /dev/null +++ b/change/@fluentui-react-native-stack-e12a94a6-db3d-4067-9061-11d39b4121f4.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui-react-native/stack", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-styling-utils-d7f2b776-cda8-41b2-9c62-6cb05fdf6e57.json b/change/@fluentui-react-native-styling-utils-d7f2b776-cda8-41b2-9c62-6cb05fdf6e57.json new file mode 100644 index 0000000000..4791e2ada0 --- /dev/null +++ b/change/@fluentui-react-native-styling-utils-d7f2b776-cda8-41b2-9c62-6cb05fdf6e57.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui-react-native/styling-utils", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-switch-890dcefb-4903-4270-8a62-c249eb92e41c.json b/change/@fluentui-react-native-switch-890dcefb-4903-4270-8a62-c249eb92e41c.json new file mode 100644 index 0000000000..dc79aae37a --- /dev/null +++ b/change/@fluentui-react-native-switch-890dcefb-4903-4270-8a62-c249eb92e41c.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui-react-native/switch", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-tablist-d70c07bd-04bc-44a9-9704-e3ffd9ebce23.json b/change/@fluentui-react-native-tablist-d70c07bd-04bc-44a9-9704-e3ffd9ebce23.json new file mode 100644 index 0000000000..94cb291302 --- /dev/null +++ b/change/@fluentui-react-native-tablist-d70c07bd-04bc-44a9-9704-e3ffd9ebce23.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui-react-native/tablist", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-tester-78a8381f-85c9-4f46-a6df-57dce95003e9.json b/change/@fluentui-react-native-tester-78a8381f-85c9-4f46-a6df-57dce95003e9.json new file mode 100644 index 0000000000..dd9b0b3fe5 --- /dev/null +++ b/change/@fluentui-react-native-tester-78a8381f-85c9-4f46-a6df-57dce95003e9.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui-react-native/tester", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-tester-win32-d3c1e864-7c52-4c06-b970-ea1265d1f575.json b/change/@fluentui-react-native-tester-win32-d3c1e864-7c52-4c06-b970-ea1265d1f575.json new file mode 100644 index 0000000000..c302af6a3e --- /dev/null +++ b/change/@fluentui-react-native-tester-win32-d3c1e864-7c52-4c06-b970-ea1265d1f575.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui-react-native/tester-win32", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-text-4a605e6c-069b-4cae-997e-d4ad6cfe1165.json b/change/@fluentui-react-native-text-4a605e6c-069b-4cae-997e-d4ad6cfe1165.json new file mode 100644 index 0000000000..1fbd5333d6 --- /dev/null +++ b/change/@fluentui-react-native-text-4a605e6c-069b-4cae-997e-d4ad6cfe1165.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui-react-native/text", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-theme-2ec0752a-4225-4619-8dea-bc787ea904d0.json b/change/@fluentui-react-native-theme-2ec0752a-4225-4619-8dea-bc787ea904d0.json new file mode 100644 index 0000000000..344d0b7bb2 --- /dev/null +++ b/change/@fluentui-react-native-theme-2ec0752a-4225-4619-8dea-bc787ea904d0.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui-react-native/theme", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-theme-tokens-e7ca6079-adbd-48ad-be20-c0f217336bd4.json b/change/@fluentui-react-native-theme-tokens-e7ca6079-adbd-48ad-be20-c0f217336bd4.json new file mode 100644 index 0000000000..8486af022b --- /dev/null +++ b/change/@fluentui-react-native-theme-tokens-e7ca6079-adbd-48ad-be20-c0f217336bd4.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui-react-native/theme-tokens", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-theme-types-c3a315dc-c05e-4034-8cee-f31f47bd4f4e.json b/change/@fluentui-react-native-theme-types-c3a315dc-c05e-4034-8cee-f31f47bd4f4e.json new file mode 100644 index 0000000000..9434e7f2de --- /dev/null +++ b/change/@fluentui-react-native-theme-types-c3a315dc-c05e-4034-8cee-f31f47bd4f4e.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui-react-native/theme-types", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-themed-stylesheet-93318280-f9a2-4f44-a112-eea29dea2e19.json b/change/@fluentui-react-native-themed-stylesheet-93318280-f9a2-4f44-a112-eea29dea2e19.json new file mode 100644 index 0000000000..8cb4cb3da9 --- /dev/null +++ b/change/@fluentui-react-native-themed-stylesheet-93318280-f9a2-4f44-a112-eea29dea2e19.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui-react-native/themed-stylesheet", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-theming-utils-69706e8d-617a-4b5b-9d2c-5b8ba81faecb.json b/change/@fluentui-react-native-theming-utils-69706e8d-617a-4b5b-9d2c-5b8ba81faecb.json new file mode 100644 index 0000000000..e3c6399875 --- /dev/null +++ b/change/@fluentui-react-native-theming-utils-69706e8d-617a-4b5b-9d2c-5b8ba81faecb.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui-react-native/theming-utils", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-tokens-e55b9199-7a9f-469c-8046-7ac0fc6a2082.json b/change/@fluentui-react-native-tokens-e55b9199-7a9f-469c-8046-7ac0fc6a2082.json new file mode 100644 index 0000000000..f421fcec67 --- /dev/null +++ b/change/@fluentui-react-native-tokens-e55b9199-7a9f-469c-8046-7ac0fc6a2082.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui-react-native/tokens", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-tooltip-390a4fd3-10b4-47c5-ad58-ef05699c2243.json b/change/@fluentui-react-native-tooltip-390a4fd3-10b4-47c5-ad58-ef05699c2243.json new file mode 100644 index 0000000000..b8f1ca9606 --- /dev/null +++ b/change/@fluentui-react-native-tooltip-390a4fd3-10b4-47c5-ad58-ef05699c2243.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui-react-native/tooltip", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-use-slot-af9750ce-aecc-43ef-99c1-3b43d6c3f10a.json b/change/@fluentui-react-native-use-slot-af9750ce-aecc-43ef-99c1-3b43d6c3f10a.json new file mode 100644 index 0000000000..06bf616a87 --- /dev/null +++ b/change/@fluentui-react-native-use-slot-af9750ce-aecc-43ef-99c1-3b43d6c3f10a.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui-react-native/use-slot", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-use-slots-6c2fe33f-0a26-4014-82bd-0878e8d0c4b2.json b/change/@fluentui-react-native-use-slots-6c2fe33f-0a26-4014-82bd-0878e8d0c4b2.json new file mode 100644 index 0000000000..c1de897859 --- /dev/null +++ b/change/@fluentui-react-native-use-slots-6c2fe33f-0a26-4014-82bd-0878e8d0c4b2.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui-react-native/use-slots", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-use-styling-222ebd4e-e84e-4259-a40f-ae3a142924f8.json b/change/@fluentui-react-native-use-styling-222ebd4e-e84e-4259-a40f-ae3a142924f8.json new file mode 100644 index 0000000000..b9da15d098 --- /dev/null +++ b/change/@fluentui-react-native-use-styling-222ebd4e-e84e-4259-a40f-ae3a142924f8.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui-react-native/use-styling", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-use-tokens-d50f06dc-9539-429f-87f8-c0b7d2dbcd97.json b/change/@fluentui-react-native-use-tokens-d50f06dc-9539-429f-87f8-c0b7d2dbcd97.json new file mode 100644 index 0000000000..20cc740a93 --- /dev/null +++ b/change/@fluentui-react-native-use-tokens-d50f06dc-9539-429f-87f8-c0b7d2dbcd97.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui-react-native/use-tokens", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-vibrancy-view-32d94c4b-922a-4e35-bc01-1dc5bedf1a07.json b/change/@fluentui-react-native-vibrancy-view-32d94c4b-922a-4e35-bc01-1dc5bedf1a07.json new file mode 100644 index 0000000000..1ae0139d04 --- /dev/null +++ b/change/@fluentui-react-native-vibrancy-view-32d94c4b-922a-4e35-bc01-1dc5bedf1a07.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui-react-native/vibrancy-view", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-win32-theme-f4cf4f58-1fd4-4d61-bacf-7c541a2abb88.json b/change/@fluentui-react-native-win32-theme-f4cf4f58-1fd4-4d61-bacf-7c541a2abb88.json new file mode 100644 index 0000000000..61545f7427 --- /dev/null +++ b/change/@fluentui-react-native-win32-theme-f4cf4f58-1fd4-4d61-bacf-7c541a2abb88.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@fluentui-react-native/win32-theme", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@uifabricshared-foundation-composable-bf3bfb50-b6ca-45f4-a5f7-338fcb99ea4c.json b/change/@uifabricshared-foundation-composable-bf3bfb50-b6ca-45f4-a5f7-338fcb99ea4c.json new file mode 100644 index 0000000000..1146a92945 --- /dev/null +++ b/change/@uifabricshared-foundation-composable-bf3bfb50-b6ca-45f4-a5f7-338fcb99ea4c.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@uifabricshared/foundation-composable", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@uifabricshared-foundation-compose-5433b2f6-143c-4ce1-a173-4832e7af748d.json b/change/@uifabricshared-foundation-compose-5433b2f6-143c-4ce1-a173-4832e7af748d.json new file mode 100644 index 0000000000..549172e640 --- /dev/null +++ b/change/@uifabricshared-foundation-compose-5433b2f6-143c-4ce1-a173-4832e7af748d.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@uifabricshared/foundation-compose", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@uifabricshared-foundation-settings-fde5a091-142e-4464-88ee-4d3a72dd5020.json b/change/@uifabricshared-foundation-settings-fde5a091-142e-4464-88ee-4d3a72dd5020.json new file mode 100644 index 0000000000..a0b2734dc8 --- /dev/null +++ b/change/@uifabricshared-foundation-settings-fde5a091-142e-4464-88ee-4d3a72dd5020.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@uifabricshared/foundation-settings", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@uifabricshared-foundation-tokens-14570d65-4285-40ef-bf9e-f09090f9ed50.json b/change/@uifabricshared-foundation-tokens-14570d65-4285-40ef-bf9e-f09090f9ed50.json new file mode 100644 index 0000000000..effea7f2d2 --- /dev/null +++ b/change/@uifabricshared-foundation-tokens-14570d65-4285-40ef-bf9e-f09090f9ed50.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@uifabricshared/foundation-tokens", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@uifabricshared-theme-registry-7350bd5b-d2f5-45e9-874a-ac67defb6864.json b/change/@uifabricshared-theme-registry-7350bd5b-d2f5-45e9-874a-ac67defb6864.json new file mode 100644 index 0000000000..bb56529ec5 --- /dev/null +++ b/change/@uifabricshared-theme-registry-7350bd5b-d2f5-45e9-874a-ac67defb6864.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@uifabricshared/theme-registry", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@uifabricshared-themed-settings-d03f981a-1e1a-4bb2-b191-f6319deeddf1.json b/change/@uifabricshared-themed-settings-d03f981a-1e1a-4bb2-b191-f6319deeddf1.json new file mode 100644 index 0000000000..08f6ee7375 --- /dev/null +++ b/change/@uifabricshared-themed-settings-d03f981a-1e1a-4bb2-b191-f6319deeddf1.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@uifabricshared/themed-settings", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@uifabricshared-theming-ramp-7f4de3ff-4d6f-4bdd-9351-57f960a22be3.json b/change/@uifabricshared-theming-ramp-7f4de3ff-4d6f-4bdd-9351-57f960a22be3.json new file mode 100644 index 0000000000..9204951d08 --- /dev/null +++ b/change/@uifabricshared-theming-ramp-7f4de3ff-4d6f-4bdd-9351-57f960a22be3.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@uifabricshared/theming-ramp", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@uifabricshared-theming-react-native-28c14d2a-7d53-413b-9159-3409755c17f7.json b/change/@uifabricshared-theming-react-native-28c14d2a-7d53-413b-9159-3409755c17f7.json new file mode 100644 index 0000000000..3373ef8b6f --- /dev/null +++ b/change/@uifabricshared-theming-react-native-28c14d2a-7d53-413b-9159-3409755c17f7.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Simplify TypeScript configuration files", + "packageName": "@uifabricshared/theming-react-native", + "email": "sanajmi@microsoft.com", + "dependentChangeType": "patch" +} From ccc7ec81129d5683f47c3ce076af58326b12f517 Mon Sep 17 00:00:00 2001 From: Saad Najmi Date: Wed, 29 Jan 2025 16:37:08 -0800 Subject: [PATCH 3/4] f --- packages/components/Link/tsconfig.json | 4 +--- packages/components/Menu/tsconfig.json | 4 +--- packages/components/RadioGroup/tsconfig.json | 4 +--- packages/components/TabList/tsconfig.json | 4 +--- packages/experimental/Overflow/tsconfig.json | 4 +--- packages/experimental/Popover/tsconfig.json | 4 +--- packages/experimental/Stack/tsconfig.json | 4 +--- packages/experimental/Tooltip/tsconfig.json | 4 +--- packages/framework/immutable-merge/tsconfig.json | 4 +--- packages/framework/memo-cache/tsconfig.json | 4 +--- packages/framework/merge-props/tsconfig.json | 4 +--- packages/framework/use-slot/tsconfig.json | 4 +--- packages/framework/use-styling/tsconfig.json | 4 +--- packages/framework/use-tokens/tsconfig.json | 4 +--- packages/utils/interactive-hooks/tsconfig.json | 4 +--- 15 files changed, 15 insertions(+), 45 deletions(-) diff --git a/packages/components/Link/tsconfig.json b/packages/components/Link/tsconfig.json index b59f552e9b..559954a6e9 100644 --- a/packages/components/Link/tsconfig.json +++ b/packages/components/Link/tsconfig.json @@ -1,5 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/packages/components/Menu/tsconfig.json b/packages/components/Menu/tsconfig.json index b59f552e9b..559954a6e9 100644 --- a/packages/components/Menu/tsconfig.json +++ b/packages/components/Menu/tsconfig.json @@ -1,5 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/packages/components/RadioGroup/tsconfig.json b/packages/components/RadioGroup/tsconfig.json index b59f552e9b..559954a6e9 100644 --- a/packages/components/RadioGroup/tsconfig.json +++ b/packages/components/RadioGroup/tsconfig.json @@ -1,5 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/packages/components/TabList/tsconfig.json b/packages/components/TabList/tsconfig.json index b59f552e9b..559954a6e9 100644 --- a/packages/components/TabList/tsconfig.json +++ b/packages/components/TabList/tsconfig.json @@ -1,5 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/packages/experimental/Overflow/tsconfig.json b/packages/experimental/Overflow/tsconfig.json index b59f552e9b..559954a6e9 100644 --- a/packages/experimental/Overflow/tsconfig.json +++ b/packages/experimental/Overflow/tsconfig.json @@ -1,5 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/packages/experimental/Popover/tsconfig.json b/packages/experimental/Popover/tsconfig.json index b59f552e9b..559954a6e9 100644 --- a/packages/experimental/Popover/tsconfig.json +++ b/packages/experimental/Popover/tsconfig.json @@ -1,5 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/packages/experimental/Stack/tsconfig.json b/packages/experimental/Stack/tsconfig.json index b59f552e9b..559954a6e9 100644 --- a/packages/experimental/Stack/tsconfig.json +++ b/packages/experimental/Stack/tsconfig.json @@ -1,5 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/packages/experimental/Tooltip/tsconfig.json b/packages/experimental/Tooltip/tsconfig.json index b59f552e9b..559954a6e9 100644 --- a/packages/experimental/Tooltip/tsconfig.json +++ b/packages/experimental/Tooltip/tsconfig.json @@ -1,5 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/packages/framework/immutable-merge/tsconfig.json b/packages/framework/immutable-merge/tsconfig.json index b59f552e9b..559954a6e9 100644 --- a/packages/framework/immutable-merge/tsconfig.json +++ b/packages/framework/immutable-merge/tsconfig.json @@ -1,5 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/packages/framework/memo-cache/tsconfig.json b/packages/framework/memo-cache/tsconfig.json index b59f552e9b..559954a6e9 100644 --- a/packages/framework/memo-cache/tsconfig.json +++ b/packages/framework/memo-cache/tsconfig.json @@ -1,5 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/packages/framework/merge-props/tsconfig.json b/packages/framework/merge-props/tsconfig.json index b59f552e9b..559954a6e9 100644 --- a/packages/framework/merge-props/tsconfig.json +++ b/packages/framework/merge-props/tsconfig.json @@ -1,5 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/packages/framework/use-slot/tsconfig.json b/packages/framework/use-slot/tsconfig.json index b59f552e9b..559954a6e9 100644 --- a/packages/framework/use-slot/tsconfig.json +++ b/packages/framework/use-slot/tsconfig.json @@ -1,5 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/packages/framework/use-styling/tsconfig.json b/packages/framework/use-styling/tsconfig.json index b59f552e9b..559954a6e9 100644 --- a/packages/framework/use-styling/tsconfig.json +++ b/packages/framework/use-styling/tsconfig.json @@ -1,5 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/packages/framework/use-tokens/tsconfig.json b/packages/framework/use-tokens/tsconfig.json index b59f552e9b..559954a6e9 100644 --- a/packages/framework/use-tokens/tsconfig.json +++ b/packages/framework/use-tokens/tsconfig.json @@ -1,5 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/packages/utils/interactive-hooks/tsconfig.json b/packages/utils/interactive-hooks/tsconfig.json index b59f552e9b..559954a6e9 100644 --- a/packages/utils/interactive-hooks/tsconfig.json +++ b/packages/utils/interactive-hooks/tsconfig.json @@ -1,5 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } From 22a72cd67e9fdfe7b6852e949aee4d92ba51b880 Mon Sep 17 00:00:00 2001 From: Saad Najmi Date: Wed, 29 Jan 2025 16:40:48 -0800 Subject: [PATCH 4/4] f --- packages/experimental/Checkbox/tsconfig.json | 7 +------ packages/experimental/Dropdown/tsconfig.json | 7 +------ 2 files changed, 2 insertions(+), 12 deletions(-) diff --git a/packages/experimental/Checkbox/tsconfig.json b/packages/experimental/Checkbox/tsconfig.json index d61066838b..559954a6e9 100644 --- a/packages/experimental/Checkbox/tsconfig.json +++ b/packages/experimental/Checkbox/tsconfig.json @@ -1,8 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "outDir": "lib", - "types": ["node"] - }, - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" } diff --git a/packages/experimental/Dropdown/tsconfig.json b/packages/experimental/Dropdown/tsconfig.json index d61066838b..559954a6e9 100644 --- a/packages/experimental/Dropdown/tsconfig.json +++ b/packages/experimental/Dropdown/tsconfig.json @@ -1,8 +1,3 @@ { - "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "outDir": "lib", - "types": ["node"] - }, - "include": ["src"] + "extends": "@fluentui-react-native/scripts/tsconfig.json" }