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,
},
],
},
],
},
};
Feature Proposal
Is it possible to have types to have autocompletion when adding the options of the
sassLoader?Such like that:
I know there is
@types/sass-loaderbut not sure it is quite relevant since there is@types/webpackrequired.