We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is it possible to have types to have autocompletion when adding the options of the sassLoader? Such like that:
sassLoader
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.
@types/sass-loader
@types/webpack
The text was updated successfully, but these errors were encountered:
PR welcome, we use typescript jsdocs
Sorry, something went wrong.
What is your strategy to add typings ?
Here configuration and examples of our types using jsdocs https://github.com/webpack-contrib/compression-webpack-plugin
No branches or pull requests
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-loader
but not sure it is quite relevant since there is@types/webpack
required.The text was updated successfully, but these errors were encountered: