task.json in typescript#task.json (1) 썸네일형 리스트형 task.json 작성하기 vc 단축키 커맨드 + 쉬프트 + P 눌르고 Tasks:Configure Task 선택 tsc: 빌드 - tsconfig.json 선택하면 .vccode 폴더안에 task.json 만들어지는데 아래있는 코드 넣으면 됨. { // See https://go.microsoft.com/fwlink/?LinkId=733558 // for the documentation about the tasks.json format "version": "2.0.0", "tasks": [ { "type": "typescript", "tsconfig": "tsconfig.json", "problemMatcher": [ "$tsc" ], "group": { "kind": "build", "isDefault": true } } ] .. 이전 1 다음