美文网首页
vue3+ts,解决编译时,控制台报警告:存在any类型

vue3+ts,解决编译时,控制台报警告:存在any类型

作者: 羊驼626 | 来源:发表于2021-04-09 17:14 被阅读0次
    warning: Unexpected any. Specify a different type (@typescript-eslint/no-explicit-any) at xxxxxx
    

    直接关闭any类型的警告:
    在 .eslintrc.js文件中找到rules 添加 "@typescript-eslint/no-explicit-any": ["off"]

    module.exports = {
      rules: {
          "@typescript-eslint/no-explicit-any": ["off"]
      }
    }
    

    相关文章

      网友评论

          本文标题:vue3+ts,解决编译时,控制台报警告:存在any类型

          本文链接:https://www.haomeiwen.com/subject/cmcwkltx.html