• 配置任务

在菜单选择【终端】-【配置任务】

选择【使用模板创建 tasks.json 文件】

选择【Other】

tasks.json文件生成完毕

  • 配置默认生成任务

生成tasks.json文件:

{
	"version": "2.0.0",
	"tasks": [
		{
			"type": "typescript",
			"tsconfig": "tsconfig.json",
			"option": "watch",
			"problemMatcher": [
				"$tsc-watch"
			],
			"group": {
				"kind": "build",
				"isDefault": true
			},
			"label": "tsc: 监视 - tsconfig.json"
		}
	]
}

 

Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐