Skip to content

Commit

Permalink
Merge 65a3bf5 into a09c267
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmonette committed Aug 4, 2018
2 parents a09c267 + 65a3bf5 commit d433c3e
Show file tree
Hide file tree
Showing 21 changed files with 4,388 additions and 1,282 deletions.
3 changes: 0 additions & 3 deletions .babelrc

This file was deleted.

3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
coverage
node_modules
node_modules
lib
1 change: 1 addition & 0 deletions .prettierrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
printWidth: 120
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"editor.formatOnSave": true
}
14 changes: 14 additions & 0 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
module.exports = {
verbose: true,
collectCoverage: true,
transform: {
"^.+\\.tsx?$": "ts-jest"
},
testEnvironment: "node",
testPathIgnorePatterns: ["/node_modules/", "__tests__/util/"],
testRegex: "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
moduleFileExtensions: ["ts", "tsx", "js", "jsx", "json", "node"],
moduleNameMapper: {
"@app/(.*)": "<rootDir>/src/$1"
}
};

0 comments on commit d433c3e

Please sign in to comment.