반응형
250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 프래그먼트
- computergraphics
- 대전맛집
- 몰입캠프후기
- 타입스크립트
- BFS
- 자바
- MySQL
- 안드로이드스튜디오
- 우선순위큐
- glfw
- 프로그래머스
- 리사이클러뷰
- node.js
- 몰입캠프
- 카이스트맛집
- 어은동맛집
- 알고리즘
- 위상정렬
- 백준
- 궁동
- 카이스트
- 컴퓨터그래픽스
- 분리집합
- 앱개발
- html
- 후기
- DP
- 자바스크립트
- nodeJS
Archives
- Today
- Total
목록tsc-watch (1)
소근소근
tsc-watch 사용하기
타입스크립트 코드를 바꿀 때 마다 매번 자바스크립트로 컴파일하고 node로 실행해야 하는 번거로움이 있다. tsc-watch 를 설치해서 사용해보자. 1. $npm install tsc-watch --dev 2. src, dist 디렉토리를 만든다.(모든 ts파일은 src로, 컴파일 된 js파일은 dist로 ) 3. package.json 파일을 수정한다. "scripts": { "test": "echo \"Error: no test specified\" && exit 1", "start" : "tsc-watch --onSuccess \"node dist/index.js \" " }, 4. tsconfig.json 파일을 수정한다. { "compilerOptions":{ "module" : "common..
typescript
2022. 3. 27. 14:03