I'm getting the following error every time I run my CRA app, though everything runs correctly:
Compiling...
Files successfully emitted, waiting for typecheck results...
Compiled with warnings.
./src/app/theme/colors.module.scss.d.ts 4:12
Module parse failed: Unexpected token (4:12)
File was processed with these loaders:
* ./node_modules/@pmmmwh/react-refresh-webpack-plugin/loader/index.js
* ./node_modules/react-scripts/node_modules/babel-loader/lib/index.js
You may need an additional loader to handle the result of these loaders.
| $RefreshSetup$(module.id);
|
> const colors;
| export default colors;
|
Search for the keywords to learn more about each warning.
To ignore, add // eslint-disable-next-line to the line before.
Here's the culprit file:
export interface AppColors {
background: string;
primary: string;
secondary: string;
}
const colors: AppColors;
export default colors;
It allows me to re-use my SCSS/SASS variables in my Typescript files.
What's wrong?