Require statement not part of import statement.(@typescript-eslint/no-var-requires)

当在 vue.config.js 中:

const path = require('path')

提示报错:

Require statement not part of import statement.(@typescript-eslint/no-var-requires)

解决办法:

.eslintrc.js中的 rules 属性新增以下内容:

  rules: {

    '@typescript-eslint/no-var-requires': 0

  }

 

上一篇:安装MySQL及MySQL Workbench,以及解决Mysql workbench requires the visual C++ 2019 redistributable package的问题


下一篇:P1379 八数码难题 题解(双向宽搜)