筆記:簡單初始化node.js專案使用typescript

筆記:手動初始化node.js使用typescript 


步驟1. 建立資料夾

建立你喜歡的資料夾作為專案目錄,並進入目錄中


步驟2. 初始化

npm init

初始化node.js專案檔案package.json


步驟3. 安裝套件

npm install typescript @types/node --save-dev

安裝typescript套件到node_modules並生成package-lock.json


步驟4. 初始化tsc

npx tsc --init

生成tsconfig.json


步驟5. 設定tsc

修改tsconfig.json

"outDir": "dist",  

"rootDir": "./src",

tsc輸出結果到dis目錄,程式碼目錄則是在src


步驟6.寫你的ts程式

index.ts

console.log('hello world');


步驟7. 設定預設執行指令

修改package.json加入start指令

"scripts": {

  "start": "tsc && node dist/index.js"

},


步驟8. 跑起來

npm run start


留言