VoidXia / 17-214-template-s24-lab07

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Lab 7: Intro to TypeScript

Commands

  • npm install: installs any Node dependencies
  • npm run compile: compiles the TypeScript program into a JavaScript program
  • npm run start or npm run start -- <arguments>: runs the JavaScript program. NOTE: you will need to re-run npm run compile after you make changes to the program
  • npm run lint or npx ts-standard: runs the ts-standard linter. If the linter finds errors, it can often automatically fix them using the npx ts-standard --fix command
  • npm run test: runs the jest test framework. When your implementation is complete, all of the tests should pass

About


Languages

Language:TypeScript 98.1%Language:JavaScript 1.9%