반응형
셋팅 순서
npm init -y <br>
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start":"node index.js",
"prestart":"tsc"
}, <br>
tocuh tsconfig.json <br>
{
"compilerOptions": {
"module":"CommonJS",
"target":"ES2015",
"sourceMap": true
},
"include":[
"index.ts"
],
"exclude":[
"node_modules"
],
}<br>
touch index.ts <br>
yarn add tsc-watch --dev<br>
"scripts": {
"start":"tsc-watch --onSuccess \" node dist/index.js\" "
},<br>
"include":[
"src/**/*"
],<br>
"compilerOptions": {
"module":"CommonJS",
"target":"ES2015",
"sourceMap": true,
"outDir": "dist"
},<br>
src 와 dist 폴더 생성
반응형
'Backend 언어 및 프레임워크 > Javascript- Node, express, Nest' 카테고리의 다른 글
webSocket 과 http의 차이 (0) | 2021.10.31 |
---|---|
TypeScript(타입스크립트) 셋팅, 함수,tsc-watch,interface,class 정리 (0) | 2021.10.03 |
tsc watch 쓸때 Cannot find module 'typescript/bin/tsc' (0) | 2021.09.29 |
쿠키(cookie) 사용법 (불러오기 ,저장 등) (0) | 2021.09.17 |
노드 디버깅 (0) | 2021.08.25 |