Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

馃摝 Package Updates #420

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
########################################################################
# File types
########################################################################
jest.config.js

########################################################################
# Folders
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
12.16.1
14.15.0
1 change: 1 addition & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"arrowParens": "always",
"trailingComma": "none",
"singleQuote": true
}
7 changes: 5 additions & 2 deletions jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,14 @@ module.exports = {

// https://goo.gl/qoKy1U
transform: {
'^.+\\.(ts|tsx)$': 'ts-jest'
'^.+\\.(js|jsx|ts|tsx)$': 'ts-jest'
},

// https://goo.gl/3j69X7
transformIgnorePatterns: [],
transformIgnorePatterns: [
// `/node_modules/(?!chalk)`,
`chalk`
],

// https://goo.gl/8hnQTn
verbose: false
Expand Down
Loading