티스토리 뷰

출처 : https://mwoo526.tistory.com/2

 

TypeScript[1] - 설치,tsconfig.json

- TypeScript -    컴파일하면 JavaScript가 되는 언어이며, 컴파일 시점에 타입 체크를 하여 객체 지향적인 문법을 추가할수 있는 특징을 가지는 언어 JavaScript가 대세긴 대세가 보다. back-end, front-en..

mwoo526.tistory.com

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  "compilerOptions": {
    "target""es6"//빌드 결과물을 es6 방식을 한다는 뜻
    "module""commonjs"// 빌과의 모듈 방식을 commonjs 방식을 한다는 뜻
    "moduleResolution""node",//모듈 해석 방식은 node 처럼 한다는 뜻
    "sourceMap"true// .map.js 파일도 함께 생성한다는 뜻
    "emitDecoratorMetadata"true/* Enables experimental support for ES7 decorators. */
    "experimentalDecorators"true,  /* Enables experimental support for emitting type metadata for decorators. */
    "removeComments"false/* Do not emit comments to output. */
    "noImplicitAny"false // 암시적으로 선언되었는데 any로 추론되면 에러를 알려준다.
  },
  "exclude": [ // npm 으로 설치한 모듈들을 import 가능하도록 설정
    "node_modules"
  ]
}
cs

***

댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
«   2025/01   »
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
글 보관함