그럼 설명 올려주신 곳에 있는
(data.ts)
type Age = number;
let 나이 :Age = 20;
(index.ts)
console.log(나이 + 1) //가능
let 철수 :Age = 30; //가능
얘네들은 안되는게 원래 맞는건가용?!
저렇게 작성하고 변환된 index.js 파일을 html 파일에 넣어 실행하면
Uncaught ReferenceError: 나이 is not defined
at index.js:2:13
라고 에러가 잡힙니당... ㅠㅠ