Skip to content

VoidXia/17-214-template-s24-lab07

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 98.1%
  • JavaScript 1.9%