require.context 报错提示 Property 'context' does not exist on type 'NodeRequire'.

1,942 阅读1分钟

typescript下

require.context 使用时报错

Property 'context' does not exist on type 'NodeRequire'.

解决方案

pnpm i @types/webpack-env -D

tsconfig.json 文件下添加

"compilerOptions": {
  "types": ["node", "webpack-env"]
}