This is a template project, meaning it is created to be copied or forked to serve as a base for other software.
It comes equipped with:
- Babel
- Jest
- a sensible
.gitignore - a couple of dummy (Typescript) source files to demonstrate it works and is testable
- Typescript configuration
- ESLint configured with some opinion (and not to conflict with Prettier)
- Prettier
Take the files and use them to start your own Javascript project.
yarninstall everythingyarn buildbuild Javascript from Typescript and put the files in the specified folderyarn testrun all tests with Jestyarn startusesindex.tsas the entry pointyarn lintcheck code style and list errors & warningsyarn prettierfix formatting (will make changes, but not commit them)