# install node
nvm install
# dependencies
yarn
{
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
},
"eslint.validate": [
"javascript",
"typescript",
],
}
# lint
yarn lint
# lint & try to fix what's possible
yarn lint:fix
# run tests
yarn test
# dev server
yarn dev
# compile source
yarn build