This is a template repository for new Typescript projects. When you create a new repository from this template, follow these instructions:
-
Make sure the
.gitignore
file is appropriate for your project. -
Replace the TODO keys like
name
anddescription
inpackage.json
. -
Install dependecies with
npm install
. -
Set up testing in
package.json
:-
Remove the
--passWithNoTests
flag from thetest-coverage
script. -
Modify the test collection rules, if appropriate.
"jest": { "collectCoverageFrom": [ "<rootDir>/src/utils/**/*.ts", ... ] }
-
-
Replace the text in
README.md
with text for the new repository.