提示:文章写完后,目录可以自动生成,如何生成可参考右边的帮助文档

解决Vue3 tsconfig.json 报错:Option ‘importsNotUsedAsValues’ is deprecated and will stop functioning in TypeScript 5.5. Specify compilerOption ‘“ignoreDeprecations”: “5.0”’ to silence this error.


翻译

提示:不处理也不影响使用:

翻译:选项“importsNotUsedAsValues”已弃用,并将停止在TypeScript 5.5中运行。指定compilerOption“”ignoreDeprecations“:”5.0“”以消除此错误。


案例:

1.compilerOptions中加入"ignoreDeprecations": "5.0"即可

代码如下(示例):

{
  "extends": "@vue/tsconfig/tsconfig.web.json",
  "include": ["src/**/*.ts", "src/**/*.vue", "src/types/**/*.d.ts"],
  "compilerOptions": {
    "ignoreDeprecations": "5.0",//加入这句代码即可
    "noImplicitAny": false,
    "baseUrl": ".",
    "paths": {
      "@/*": ["./src/*"]
    },
    "types": ["element-plus/global"]
  },

  "references": [
    {
      "path": "./tsconfig.node.json"
    }
  ]
}
Logo

前往低代码交流专区

更多推荐