Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 593 Bytes

README.md

File metadata and controls

28 lines (19 loc) · 593 Bytes

TypeScript Application

This is a template for building TypeScript Applications.

Provided commands

# Build the application in development mode and serve over localhost
npm run dev

# Build the application in production mode and output to the "dist" folder
npm run build

# Run the built application from the dist folder over localhost
npm run preview

# Run the tests once and generate a code coverage report
npm run test

# Run the tests in watch mode
npm run test:watch

# Check the code for linting errors
npm run lint

# Check the code for formatting errors
npm run format