Hi, thanks for this plugin. My question is whether it is possible to drop non-camelCased types from the generated files?
E.g. this CSS
produces the following types
declare namespace HeaderModuleScssNamespace {
export interface IHeaderModuleScss {
'nav-breadcrumb': string;
navBreadcrumb: string;
}
}
So I now have a choice when use the class names whether I want to use camelCase or dashed-case name. I'd like to eliminate this choice and keep only the camelCased version.