当前位置:   article > 正文

Vue项目构建vue项目Typescript配置文件出现错误_path to base configuration file to inherit from (r

path to base configuration file to inherit from (requires typescript version

配置文件报错

tsconfig.node.json文件提示错误:
“Path to base configuration file to inherit from (requires TypeScript version 2.1 or later), or array of base files, with the rightmost files having the greater priority (requires TypeScript version 5.0 or later)”

错误是什么意思

这个错误提示是关于 TypeScript 的配置文件 tsconfig.json 的。它是告诉你在这个配置文件中,extends 字段的值是一个文件路径或一个文件路径的数组,表示要继承的 TypeScript 配置文件。这个错误提示是在提醒你,在 TypeScript 版本 2.1 之后,extends 字段才可以支持配置文件的继承

解决办法

  1. 在项目根目录创建一个名为 tsconfig.base.json 的 TypeScript 配置文件,用于定义项目的基础 TypeScript 配置;
  2. 在 tsconfig.json 文件中,设置 extends 字段为 ./tsconfig.base.json,表示继承基础 TypeScript 配置。
    tsconfig.base.json
{
   
  "compilerOptions": 
  • 1
  • 2
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/658687
推荐阅读
相关标签
  

闽ICP备14008679号