how to run typescript in nodejs code example
Example 1: how to run typescript file
npx ts-node src/foo.ts
Example 2: start node typescript project
// create the tsConfig.json file
npx tsc --init --rootDir src --outDir build \
--esModuleInterop --resolveJsonModule --lib es6 \
--module commonjs --allowJs true --noImplicitAny true