목록[ javascript ]/typescript (1)
IT_susu
typescript compiler
typescript 설치 npm install -g typescript compile option tsc 파일명 --target 버전명 : 해당 버전으로 컴파일 tsc 파일명 --lib 라이브러리명 : 해당 라이브러리를 포함하여 컴파일 tsc 파일명 --module commonjs : commonjs 모듈로 컴파일(node.js에서 모듈 컴파일을 commonjs로 하기 때문에) tsconfig.json ts 컴파일 옵션을 정의해놓는 곳. { "include": [ // 컴파일 포함요소 "src/**/*.ts" ], "exclude": [ // 컴파일 제외요소 "node_modules" ], "compilerOptions": { // typescript compile options "module": "co..
[ javascript ]/typescript
2019. 11. 11. 22:49