我在Typescript中创建了一个项目,并且在新版本出现以防万一我的应用程序崩溃时害怕更新打字稿。现在我在Twitter上看到,可以锁定一个版本的Typescript(大概是在回购中)。怎么办呢?
Do people actually not lock in their current version of TypeScript and then complain when their build breaks?
Twitter thread where it says it's possible to lock Typescript version
答案 0 :(得分:2)
不要使用latest
作为依赖版本,只需在您的package.json中添加版本号
例如
"devDependencies": {
"typescript": "2.3.2"
}
而不是"typescript: "latest"
这将"锁定"当前项目的打字稿版本为" x.x.x"。例如,如果您正在使用VSCode,它将为您提供使用项目打字稿版本而不是最新的VSCode打字稿版本的选项。
答案 1 :(得分:0)
您可以了解最新版本的打字稿
tsc --version