Skip to content

Commit

Permalink
Merge pull request #638 from spotify/rugvip/zetypes
Browse files Browse the repository at this point in the history
explicit types and remove cypress resolution override
  • Loading branch information
Rugvip committed Apr 24, 2020
2 parents 723eaa7 + dfd44f2 commit 241ee7f
Show file tree
Hide file tree
Showing 5 changed files with 170 additions and 89 deletions.
3 changes: 0 additions & 3 deletions package.json
Expand Up @@ -34,9 +34,6 @@
"lint-staged": "^10.1.0",
"prettier": "^1.19.1"
},
"resolutions": {
"**/cypress": "4.2.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
Expand Down
3 changes: 2 additions & 1 deletion packages/app/tsconfig.json
Expand Up @@ -14,7 +14,8 @@
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "react",
"incremental": false
"incremental": false,
"types": ["node", "jest"]
},
"include": ["src"]
}
3 changes: 2 additions & 1 deletion packages/backend/tsconfig.json
Expand Up @@ -8,6 +8,7 @@
"strict": true,
"target": "es5",
"module": "commonjs",
"esModuleInterop": true
"esModuleInterop": true,
"types": ["node", "jest"]
}
}
3 changes: 2 additions & 1 deletion packages/cli/config/tsconfig.json
Expand Up @@ -8,6 +8,7 @@
"incremental": true,
"module": "es6",
"resolveJsonModule": true,
"esModuleInterop": true
"esModuleInterop": true,
"types": ["node", "jest"]
}
}

0 comments on commit 241ee7f

Please sign in to comment.