DEV Community

Discussion on: How I structure my Express + Typescript + React applications

Collapse
 
princebillygk profile image
Prince Billy Graham Karmoker • Edited

don't forget about adding this to your package.json file

scripts {
"dev": "nodemon --watch '**/*.ts' --exec 'ts-node' index.ts"
}
Enter fullscreen mode Exit fullscreen mode

and to make this work you also need to install ts-node as dev-dependency

yarn add ts-node -D
Enter fullscreen mode Exit fullscreen mode