티스토리 뷰

Web/npm

Typescript 기본셋팅

고기상추밥 2019. 1. 12. 12:35

최신버전 확인

npm outdated


모든버전 업데이트

npm update

npm update은 package.json 파일 업데이트 안함

npm update --save 패키지명 추천


명령 프롬프트 킴

cd c:/workspace/

mkdir api1


cd c:/workspace/api1


backend 

npm install express mongoose --save

body-parser 는 express안에 기본값으로 이미 포함되있음

그래서 설치 안합니다


개발전용 의존성 추가

npm install @types/node @types/express @types/mongodb @types/mongoose ts-node typescript --save-dev


script 에

"start": "node ./dist/server.js",
"build": "tsc",
"dev": "ts-node ./src/server.ts",
"prod": "npm run build && npm run start"

추가


tsconfig compile option에

"outDir": "./dist"

제일 마제막에 , 한다음에 추가

"include": [
"./src/**/*.ts" //which kind of files to compile
],
"exclude": [
"./node_modules" //which files or directories to ignore
]


'Web > npm' 카테고리의 다른 글

BabylonJS + Webpack 명령어  (0) 2019.10.13
github에 앵귤러 업로드하기  (0) 2019.04.02
Error: Cannot find module 'typescript'  (0) 2019.02.18
명렁어모음  (6) 2018.12.28
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
«   2025/01   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
글 보관함