This is README of the bootcamp_test project.
Here's a list of basic operations. To find more commands, see package.json.
# Run all tests
npm run test
# Run all tests with coverage
npm run test:coverage
# Run all typescript check
npm run test:typecheck
# Check if coding style of the code follows the rules
npm run lint:check
# Auto-fix coding style of the code to follow the rules
npm run lint:fix
# Check if format of the code follows the rules
npm run format:check
# Auto-fix format of the code follows the rules
npm run format:fix