typescript 当我甚至不写react时,得到react tsc错误

gcuhipw9  于 2023-01-14  发布在  TypeScript
关注(0)|答案(1)|浏览(127)

我正在学习 typescript ,当我用npx tsc index.ts翻译代码时,它抛出了10个错误,然而,它仍然翻译了文件。

我尝试将该文件夹移动到新位置,以查看tsc是否与其中的任何react文件冲突,我还将ts文件留空,并收到相同的错误
打印代码:

const greeting: string = "Hello world";

console.log(greeting);

package.json:

{
  "name": "typescript",
  "version": "1.0.0",
  "main": "index.js",
  "author": "ema4hhh",
  "license": "MIT",
  "dependencies": {
    "typescript": "^4.9.4"
  },
  "scripts": {
    "start": "node index.js",
    "build": "tsc index.ts",
    "watch": "tsc index.ts -w"
  }
}

谢谢

ffx8fchx

ffx8fchx1#

在另一个论坛询问,有人建议重新安装react global,我认为这不是问题所在,因为我没有导入它,但它工作了

相关问题