<index.ts>
import { 이름 } from "./a";
console.log(이름);
<a.ts>
export var 이름 = "kim";
var age = 20;
error : exports is not defined
a.js 안에 있는 Object.defineProperty(exports, "__esModule", { value: true }); <--- 이 부분이 에러라고 뜨네요
구글링해서 tsconfig.js 모듈 명도 변경해보고
import { 이름 } from "./a.js"; 확장자명도 붙여보고 해봤는데 계속 오류가 뜨네요ㅜㅠ