[expo] add typings

This commit is contained in:
KonstantinKai
2017-11-20 18:53:31 +02:00
parent 6cb103319f
commit 774cb78bf0
4 changed files with 1597 additions and 0 deletions

23
types/expo/tsconfig.json Normal file
View File

@@ -0,0 +1,23 @@
{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"expo-tests.ts"
]
}