Skip to content

Instantly share code, notes, and snippets.

@sergejbog
Last active November 15, 2022 16:19
Show Gist options
  • Save sergejbog/e309a080885ae10755ad3771bb3668f5 to your computer and use it in GitHub Desktop.
Save sergejbog/e309a080885ae10755ad3771bb3668f5 to your computer and use it in GitHub Desktop.
Intro commands for typescript #typescript
npm i typescript ts-node
npx tsc --init --rootdir src --outdir lib
# either do this or do the package.json commands
npx tsc --watch
{
"scripts": {
"start": "ts-node src/index.ts"
}
}
// to run it: npm start
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment