Skip to content

Commit 2702cfc

Browse files
Fix Plugin type issue (#14668)
This is a quick fix to an issue where the types for PluginsConfig don't match those used in plugins like [`@tailwindcss/container-queries`](https://github.com/tailwindlabs/tailwindcss-container-queries). This was caught by TypeScript with [`exactOptionalPropertyTypes`]( https://www.typescriptlang.org/tsconfig/exactOptionalPropertyTypes.html) enabled, where TypeScript checks if `undefined` can be supplied as a value for optional types. I felt that it made more sense to fix this here, as it makes the core types more flexible, as opposed to each plugin needing to fix this when/if they hit it. --------- Co-authored-by: Philipp Spiess <[email protected]>
1 parent 6069a81 commit 2702cfc

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10-
- Nothing yet!
10+
### Fixed
11+
12+
- Ensure the TypeScript types for `PluginsConfig` allow `undefined` values ([#14668](https://github.com/tailwindlabs/tailwindcss/pull/14668))
1113

1214
## [3.4.15] - 2024-11-14
1315

types/config.d.ts

+5-2
Original file line numberDiff line numberDiff line change
@@ -344,9 +344,12 @@ export interface PluginAPI {
344344
export type PluginCreator = (api: PluginAPI) => void
345345
export type PluginsConfig = (
346346
| PluginCreator
347-
| { handler: PluginCreator; config?: Partial<Config> }
347+
| { handler: PluginCreator; config?: Partial<Config> | undefined }
348348
| {
349-
(options: any): { handler: PluginCreator; config?: Partial<Config> }
349+
(options: any): {
350+
handler: PluginCreator;
351+
config?: Partial<Config> | undefined;
352+
};
350353
__isOptionsFunction: true
351354
}
352355
)[]

0 commit comments

Comments
 (0)