This is a plugin for Webpack based on Awesome Typed SASS Modules.
It creates .d.ts
files for all .scss
files.
You will, probably, want to add the following line to .gitignore
:
*.scss.d.ts
// webpack.config.js
const TypedSassPlugin = require("typed-sass-plugin");
module.exports = {
entry: //...,
output: //...,
plugins: [
new TypedSassPlugin(options)
]
}
camelCase
: Convert CSS class tokens to camelCase. Boolean. Default:false