Created
January 13, 2019 20:32
-
-
Save ryoldash/769ac53e4fd8ef914a4b060109216467 to your computer and use it in GitHub Desktop.
How to use Mobx, Typescript, NativeBase, mocking REST APIs with JSON Server and Faker.JS in React Native
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"compilerOptions": { | |
"baseUrl": ".", | |
"emitDecoratorMetadata": true, | |
"experimentalDecorators": true, | |
"target": "es5", | |
"module": "esnext", | |
"moduleResolution": "node", | |
"jsx": "react", | |
"outDir": "artifacts", | |
"rootDir": "src", | |
"allowSyntheticDefaultImports": true, | |
"noImplicitAny": true, | |
"preserveConstEnums": true, | |
"allowJs": false, | |
"sourceMap": true, | |
"noImplicitReturns": true, | |
"noImplicitThis": true, | |
"noUnusedParameters": true, | |
"noUnusedLocals": true, | |
"importHelpers": false, | |
"strictNullChecks": true, | |
"suppressImplicitAnyIndexErrors": true, | |
"forceConsistentCasingInFileNames": true, | |
"lib": ["es6", "dom"], | |
}, | |
"exclude": [ | |
"android", | |
"App.tsx", | |
"ios", | |
"build", | |
"node_modules" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment