feat: add package.json config for build
... | ... | @@ -5,7 +5,8 @@ |
"main": "index.js", | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1", | ||
"start": "nodemon src/app.ts" | ||
"start": "nodemon src/app.ts", | ||
"build": "npx tsc" | ||
}, | ||
"keywords": [], | ||
"author": "", | ||
... | ... | @@ -29,6 +30,7 @@ |
"@types/express": "^4.17.21", | ||
"@types/ini": "^1.3.33", | ||
"@types/uuid": "^9.0.7", | ||
"nodemon": "^3.0.1" | ||
"nodemon": "^3.0.1", | ||
"typescript": "^5.2.2" | ||
} | ||
} |
Please register or sign in to comment