Skip to content

Instantly share code, notes, and snippets.

@ryoldash
Created January 13, 2019 20:32
Show Gist options
  • Save ryoldash/769ac53e4fd8ef914a4b060109216467 to your computer and use it in GitHub Desktop.
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
{
"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