본문 바로가기

Typescript

[typescript 기본] 세팅하기

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

 

TSConfig Reference - Docs on every TSConfig option

From allowJs to useDefineForClassFields the TSConfig reference includes information about all of the active compiler flags setting up a TypeScript project.

www.typescriptlang.org

 

 

타입스크립트 해볼 수 있는 곳: https://www.typescriptlang.org/play

반응형