ts -> js로 변환해주는 컴파일을 해야한다.
//tsconfig.json 에서의 설정
{
"compilerOptions": {
"target": "es2016",
"module": "commonjs",
"sourceMap": true,
"outDir": "build",
},
"include": ["first.ts"],
"exclude": ["node_modules"]
}
src/**/*
: src안의 모든 파일) "scripts": {
"start": "node ./build/first.js",
"prestart": "tsc",
}
$npm run start
하면 start를 실행하기 전 prestart를 실행하여 컴파일해줌공부하며 정리&기록하는 ._. 씅로그