Skip to content

Instantly share code, notes, and snippets.

@hikui
Created February 15, 2019 12:12
Show Gist options
  • Save hikui/4e95a9aaf4c4819105d0657f226d1d21 to your computer and use it in GitHub Desktop.
Save hikui/4e95a9aaf4c4819105d0657f226d1d21 to your computer and use it in GitHub Desktop.
tsconfig for RN
{
"compilerOptions": {
/* Basic Options */
"target": "es2015",
"module": "es2015",
"lib": ["es2015"],
"jsx": "react-native",
"rootDir": "./",
"noEmit": true,
"strict": true,
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"resolveJsonModule": true
},
"exclude": ["node_modules"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment