티스토리 뷰

TypeScript 프로젝트 환경 구성하기

cd 폴더명
npm init -y
npm install typescript --save-dev
// tsconfig.json
{
  "compilerOptions": {
    "target": "es6",
    "module": "commonjs",
    "sourceMap": true,
    "outDir": "./dist"
  },
  "include": [
    "src/**/*"
  ]
}
npm i -D @babel/core @babel/preset-env @babel/preset-typescript @typescript-eslint/eslint-plugin @typescript-eslint/parser eslint prettier eslint-plugin-prettier

 

TypeScript의 타입

불리언

숫자

문자열

배열

튜플

객체

any

 

 

반응형
댓글