我正在学习 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"
}
}
谢谢
1条答案
按热度按时间ffx8fchx1#
在另一个论坛询问,有人建议重新安装react global,我认为这不是问题所在,因为我没有导入它,但它工作了