TypeScript : 성적표 프로그램
1. 프로그램 기본 세팅 [cmd] 1. npm init -y 2. tsc --init --rootDir ./src --outDir ./dist --esModuleInterop --module commonjs --strict true --allowJS true --checkJS true [package.json] 3. scripts 항목 수정 "scripts": { "start": "tsc && node ./dist/index.js", "build": "tsc --build", "clean": "tsc --build --clean" }, 4. src 폴더 생성 2. 프로그램 src > [index.ts] //학생 인터페이스 코드 interface Student { name: string; age: num..