Install NodeJS, TypeScript, ExpressJS and ESLint

Install NodeJS, TypeScript, ExpressJS and ESLint with initial
configuration files.

Add initial instructions to README.md
This commit is contained in:
Rodrigo Pinto 2025-04-01 17:58:14 -03:00
commit 74c1ee1b7b
6 changed files with 2592 additions and 0 deletions

11
tsconfig.json Normal file
View file

@ -0,0 +1,11 @@
{
"compilerOptions": {
"module": "commonjs",
"esModuleInterop": true,
"target": "es6",
"moduleResolution": "node",
"sourceMap": true,
"outDir": "dist"
},
"lib": ["es2015"]
}