This project is a simple starter for TypeScript with some good start settings.
:!: Note: Settings/this file is configured for use in Windows, you might need to modify slashes in order to make it work.
The code is checked in without node_modules
, so before running the code execute:
npm install
There are several ways to run the code.
- Just press F5 in vscode
- Press ctrl-shift-p and choose "Debug: Select and start debugging"
- Using the UI
Use one of the following (depends on what you like)
node --transpile-only ./src/index.ts # This one is faster!
npm start
tsc -b -v
node dist/index.js
Eslint is configured, run linting by executing:
npm run lint