Providing all of that works you should be ready to start development!
Run tests, lint checking, format checking and the build.
npm run verify
Transpile the code and build the documentation.
npm run build
To just build the code
npm run build:code
To just build the docs
npm run build:docs
Run all (non-type) tests.
npm run tests
Run all (non-type) tests with code coverage enabled.
npm run tests:coverage
Run all type tests.
npm run test:types
Run all mutation tests.
npm run test:mutants
Check for linting errors
npm run lint
Try to fix any linting errors if possible
npm run lint:fix
Check for prettier errors
npm run format:check
Try to fix any prettier errors
npm run format:write