Update types to work with Node16 module resolution (#12097)

* Update types to work with Node16 module resolution

* Update changelog
This commit is contained in:
Jordan Pittman 2023-09-28 11:12:50 -04:00
parent 3fa8ab1793
commit bbe3fca424
2 changed files with 8 additions and 3 deletions

View File

@ -20,6 +20,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Handle variable colors that have variable fallback values ([#12049](https://github.com/tailwindlabs/tailwindcss/pull/12049))
- Batch reading content files to prevent `too many open files` error ([#12079](https://github.com/tailwindlabs/tailwindcss/pull/12079))
- Skip over classes inside `:not(…)` when nested in an at-rule ([#12105](https://github.com/tailwindlabs/tailwindcss/pull/12105))
- Update types to work with `Node16` module resolution ([#12097](https://github.com/tailwindlabs/tailwindcss/pull/12097))
## [3.3.3] - 2023-07-13

10
types/index.d.ts vendored
View File

@ -1,7 +1,11 @@
import { PluginCreator } from 'postcss'
import type { PluginCreator } from 'postcss'
import type { Config } from './config.d'
declare const plugin: PluginCreator<string | Config | { config: string | Config }>
export { Config }
export default plugin
declare type _Config = Config
declare namespace plugin {
export type { _Config as Config }
}
export = plugin