Skip to content

Commit

Permalink
#376 Specify types in tsconfig for RN compat
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredpalmer committed Feb 7, 2018
1 parent d1784a4 commit 46fca9b
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion tsconfig.base.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,20 @@
"strict": true,
"strictNullChecks": true,
"stripInternal": true,
"target": "es5"
"target": "es5",
"types": [
"react",
"react-native",
"jest",
"prop-types",
"enzyme",
"enzyme-adapter-react-16",
"lodash.clonedeep",
"lodash.isequal",
"lodash.topath",
"warning",
"react-test-renderer"
]
},
"include": ["src", "./typings.d.ts"],
"exclude": ["node_modules", "dist"]
Expand Down

0 comments on commit 46fca9b

Please sign in to comment.