1. vsCode에서 tslint 설치
2. typescript 설치
npm i typescript -g
3. typescript파일을 js파일로 컴파일하기
tsc index.ts
4. tsconfig.json 파일생성해서 컴파일 옵션정하기
{
"compilerOptions": {
"allowJs": true,
"checkJs": true,
"noImplicitAny": true
}
}
참고: https://www.typescriptlang.org/tsconfig
타입스크립트 해볼 수 있는 곳: https://www.typescriptlang.org/play
반응형
'Typescript' 카테고리의 다른 글
[typescript 기본] Union type 과 Intersection type 차이 ( | 와 &) (0) | 2021.12.28 |
---|---|
[typescript 기본] type과 interface (0) | 2021.12.28 |
[typescript 기본] interface란? (0) | 2021.12.28 |
[typescript 기본] 함수에 interface 활용하기 (0) | 2021.12.28 |
[typescript 기본] 타입 설정 (기본, 함수) (0) | 2021.12.27 |