We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5ba44a commit 5cc0ebaCopy full SHA for 5cc0eba
CHANGELOG.md
@@ -73,6 +73,26 @@ module.exports = {
73
};
74
```
75
76
+Typescript migration:
77
+
78
+Before:
79
80
+```ts
81
+declare module '*.module.css' {
82
+ const classes: { [key: string]: string };
83
+ export default classes;
84
+}
85
+```
86
87
+After:
88
89
90
91
92
+ export = classes;
93
94
95
96
* The `modules.exportLocalsConvention` has the value `as-is` when the `modules.namedExport` option is `true` and you don't specify a value
97
* Minimum supported webpack version is `5.27.0`
98
* Minimum supported Node.js version is `18.12.0`
0 commit comments