-
-
Notifications
You must be signed in to change notification settings - Fork 430
Open
Description
Feature Proposal
Is it possible to have types to have autocompletion when adding the options of the sassLoader
?
Such like that:
const sassOptions: SassOptions = {
implementation: require("sass"),
...
}
module.exports = {
module: {
rules: [
{
test: /\.s[ac]ss$/i,
use: [
"style-loader",
"css-loader",
{
loader: "sass-loader",
options: sassOptions,
},
],
},
],
},
};
I know there is @types/sass-loader
but not sure it is quite relevant since there is @types/webpack
required.
Metadata
Metadata
Assignees
Labels
No labels