每次运行 CRA 应用程序时都会出现以下错误,但一切运行正常:
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.
这是罪魁祸首文件:
export interface AppColors {
background: string;
primary: string;
secondary: string;
}
const colors: AppColors;
export default colors;
它允许我在我的 Typescript 文件中重新使用我的 SCSS/SASS 变量。
怎么了?