사용하는 tsconfig.json 옵션
2021. 12. 18. 17:45ㆍTypeScript
"target": "es6"
빌드되는 파일의 문법 버전
"module": "commonjs"
import시 가져오는 방법
commonjs = require
es6 = import
"outDir": "dist"
컴파일 진행 후 js파일이 나오는 폴더명
"allowJs":true
ts 컴파일시 js파일을 허용하는 옵션
"esModuleInterop":true
import중 es6문법과 commonJS 호완을 위해 사용
728x90
반응형
'TypeScript' 카테고리의 다른 글
TypeScript Async Await @typescript-eslint/no-misused-promises 에러 해결 (0) | 2022.01.25 |
---|---|
express -generator에서 TS변환 시 /bin/www 컴파일 안되는 현상 (0) | 2022.01.15 |
TypeScript - Class(2) Constructor, Access Modifiers, getter,setter (0) | 2021.07.25 |
TypeScript - Class(1) (0) | 2021.07.25 |
TypeScript - 함수 매개변수 타입 설정 (0) | 2021.07.25 |