[컴] 간단하게 typescript 시작하기 1

 typescript init / typescript boilerplate / tsc / typescript 시작 / 타입스크립트 시작

간단하게 typescript 시작하기

  1. npm 이 설치되어 있다고 가정
  2. npm init
  3. npm i -D typescript
  4. mkdir src
  5. tsc --init 하면 tsconfig.json 이 생성된다.
    1. <proj_root>/tsconfig.json 생성
  6. package.json 에 build command 추가: tsc -p tsconfig.json
  7. node 관련 package 를 사용한다면 npm i @types/node 를 해주자.

tsconfig.json

{
    "compilerOptions": {
        "strict": true,
        "outDir": "./dist/",
        "sourceMap": true,
        "noImplicitAny": true,
        "module": "commonjs",
        "target": "es5",
    },
    "include": [
        "./src/**/*.ts"
    ],
    "exclude": [
        "**/*.test.ts"
    ]
}

package.json

{
  ...
  "scripts": {
    "build": "tsc -p tsconfig.json",
    ...
  },
  ...
} 

See Also

  1. GitHub - metachris/typescript-boilerplate: A modern TypeScript project setup, for Node.js and browsers (using esbuild).
  2. 쿠...sal: [컴] 간단하게 typescript 시작하기 2

댓글 없음:

댓글 쓰기