You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "Allows to configure the generated local ident name (https://github.com/webpack-contrib/css-loader#localidentname).",
66
66
"type": "string",
67
67
"minLength": 1
68
68
},
69
69
"localIdentContext": {
70
+
"description": "Allows to redefine basic loader context for local ident name (https://github.com/webpack-contrib/css-loader#localidentcontext).",
70
71
"type": "string",
71
72
"minLength": 1
72
73
},
73
74
"localIdentHashPrefix": {
75
+
"description": "Allows to add custom hash to generate more unique classes (https://github.com/webpack-contrib/css-loader#localidenthashprefix).",
74
76
"type": "string",
75
77
"minLength": 1
76
78
},
77
79
"localIdentRegExp": {
80
+
"description": "Allows to specify custom RegExp for local ident name (https://github.com/webpack-contrib/css-loader#localidentregexp).",
78
81
"anyOf": [
79
82
{
80
83
"type": "string",
@@ -86,10 +89,15 @@
86
89
]
87
90
},
88
91
"getLocalIdent": {
92
+
"description": "Allows to specify a function to generate the classname (https://github.com/webpack-contrib/css-loader#getlocalident).",
89
93
"instanceof": "Function"
90
94
},
91
95
"namedExport": {
92
-
"description": "Use the named export ES modules.",
96
+
"description": "Enables/disables ES modules named export for locals (https://github.com/webpack-contrib/css-loader#namedexport).",
97
+
"type": "boolean"
98
+
},
99
+
"exportGlobals": {
100
+
"description": "Allows to export names from global class or id, so you can use that as local name (https://github.com/webpack-contrib/css-loader#exportglobals).",
0 commit comments