ts
파일을 인식할 수 없음ts
확장자 파일을 브라우저가 인식할 수 있는 js
파일로 변환을 해줘야하는데 이것을 컴파일이라고 한다.컴파일할 폴더 오른쪽 클릭, 터미널에서 열기
npm i typescript -g
tsc index.ts
tsconfig.json
파일 생성// tsconfig.json
{
"comfileOptions": {
"allowJs" : true,
"checkJs" : true,
"noImplicitAny": true
}
}
allowJs
checkJs
@ts-check
와 같다. js에서 TS의 기능을 활용하고, 타입 검사 기능을 js에 녹여내겠다는 용도로 사용한다.noImplicitAny
class Student {
name : string; // 타입지정
constructor(name:string) {
this.name = name
}
}