DefinitelyTyped/types/react-native/tsconfig.json
Amir Hoseinian 7beeda8f83
Update flatten typing under StyleSheet namespace. React-Native (#42790)
* Update flatten typing under StyleSheet namespace.

* Add test for stylesheet.flatten()
2020-03-04 09:57:50 +01:00

30 lines
717 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": ["es6"],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"baseUrl": "../",
"jsx": "react",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"test/index.tsx",
"test/globals.tsx",
"test/animated.tsx",
"test/init-example.tsx",
"test/ART.tsx",
"test/legacy-properties.tsx",
"test/stylesheet-create.tsx",
"test/stylesheet-flatten.tsx"
]
}