Skip to content

Instantly share code, notes, and snippets.

View lesterfernandez's full-sized avatar
👋
Welcome to my profile!

Lester lesterfernandez

👋
Welcome to my profile!
View GitHub Profile
@lesterfernandez
lesterfernandez / package.json
Created January 14, 2022 14:40
Automatically build TypeScript and run JavaScript on every change
"scripts": {
"start": "node dist/index.js",
"build": "npx tsc",
"dev": "tsc-watch --onSuccess \"node ./dist/index.js\""
},
"devDependencies": {
"tsc-watch": "^4.6.0",
"typescript": "^4.5.4"
},