I'm issuing to this code:
|
const cssModuleExport = 'export const cssExports: CssExports;\nexport default cssExports;\n'; |
css-loader (and style-loader as well) has no such export. So I think would be better to use something like this instead:
const cssModuleExport = 'const cssExports: CssExports;\nexport default cssExports;\n';
I'm issuing to this code:
css-modules-typescript-loader/index.js
Line 9 in 908d491
css-loader(andstyle-loaderas well) has no such export. So I think would be better to use something like this instead: