Typescript2 Typescript 5.0 업데이트에서 달라진 것들 - Decorators Decorators const Type Parameters Supporting Multiple Configuration Files in extends All enums Are Union enums --moduleResolution bundler Resolution Customization Flags --verbatimModuleSyntax 모든 링크들은 원문을 가리킵니다. Decorators 데코레이터는 클래스와 멤버를 재사용 가능한 방식으로 사용자 정의할 수 있게 해주는 곧 출시될 ECMAScript 기능입니다. class Person { name: string; constructor(name: string) { this.name = name; } greet() { console.log(`Hello, .. 2023. 4. 9. TypeScript 시작 방법 TypeScript는 Javascript에 Type을 추가하여 Compile이 필요하게 되는 언어입니다. 한번 시작해보도록 하시죠! 1. 새 프로젝트 설정 만약, 여기에서 npm도 설치되어있지 않고 Node도 설치되어 있지 않다면 Node를 설치해주시길 바랍니다. nodejs.org/en/ Node.js Node.js® is a JavaScript runtime built on Chrome's V8 JavaScript engine. nodejs.org 현재(2021-04-26) LTS 버전인 14버전으로 설치해주시면 좋을 것 같아요. 그러면 cmd창에서 npm -v, node -v를 입력하시면 버전이 출력되는 것을 보실 수 있으실거에요. 그러면 설치가 된 것입니다. VS Code를 열어 새로운 프로젝트를.. 2021. 4. 29. 이전 1 다음