Skip to content

Instantly share code, notes, and snippets.

View ScorpionConMate's full-sized avatar
🏠
Working from home

Alan Perez ScorpionConMate

🏠
Working from home
View GitHub Profile
@ScorpionConMate
ScorpionConMate / setup-node.md
Last active September 6, 2023 15:45
Setting Up Node.js Typescript Project with Eslint, Prettier & Live Reloading

Setting Up Node.js Typescript Project with Eslint, Prettier & Live Reloading

Setting up Typescript and live reloading in Node.js

First, setting up the file tsconfig.json to compile the typescript files into javascript files.

{
  "compilerOptions": {
 "module": "commonjs",