Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardocasares committed May 16, 2019
0 parents commit e937a8e
Show file tree
Hide file tree
Showing 27 changed files with 6,996 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
@@ -0,0 +1,3 @@
build
coverage
node_modules
8 changes: 8 additions & 0 deletions jest.config.js
@@ -0,0 +1,8 @@
const tsconfig = require("./tsconfig.json");
const moduleNameMapper = require("tsconfig-paths-jest")(tsconfig);

module.exports = {
preset: "ts-jest",
testEnvironment: "node",
moduleNameMapper
};
5 changes: 5 additions & 0 deletions nodemon.json
@@ -0,0 +1,5 @@
{
"watch": ["src/**/*.ts"],
"ignore": ["src/**/*.test.ts"],
"exec": "ts-node -r tsconfig-paths/register"
}

0 comments on commit e937a8e

Please sign in to comment.