DefinitelyTyped/types/react-native/tsconfig.json
Daniel Earwicker a56d17157a [react-native] - StyleSheet.create parameter properly constrained
Added test based on output of react-native init command
2017-04-11 09:47:10 +01:00

27 lines
555 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6",
"dom"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": false,
"baseUrl": "../",
"jsx": "react",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"test/index.tsx",
"test/animated.tsx",
"test/init-example.tsx"
]
}