Posts

Showing posts from January, 2025

Typescript commands

Image
Install Typescript: npm install -g typescript confirm installation: tsc creates js file Commit in Github Debugging Typescript To compile type script code: tsc -p . Running UT Install globally UT library: npm install -g type Parse the TS file to JS: tsc [file].ts run UT: tape Person.tests.js