ts 원시타입 (1) 썸네일형 리스트형 타입스크립트 기초문법1 타입스크립트 기초문법1 📌 초기 세팅 tsc --init npm -init y npm i @types/node 📄 tsconfig.json { // scr 폴더 하위의 모든 .ts 확장 파일 "include": ["src/**/*.ts"], "compilerOptions": { "lib": ["ES2021"], // esModuleInterop 속성이 위의 코드 처럼 true로 설정될 경우, ES6 모듈 사양을 준수하여 CommonJS 모듈을 가져올 수 있게 됩니다. // e.g. typescript-test.ts => import express from "express" "esModuleInterop": true, "target": "ES2021", "outDir": "dist", "strictNull.. 이전 1 다음