Last active
December 4, 2019 09:43
-
-
Save valentinmakov/0730f7980136100322c97d5171159800 to your computer and use it in GitHub Desktop.
tsconfig.json
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": { | |
"allowJs": false, | |
"allowSyntheticDefaultImports": true, | |
"esModuleInterop": true, | |
"jsx": "react-native", | |
"lib": ["es6"], | |
"module": "commonjs", | |
"moduleResolution": "node", | |
"noEmit": true, | |
"resolveJsonModule": true, | |
"strict": true, | |
"target": "esnext" | |
}, | |
"exclude": [ | |
"node_modules", | |
"babel.config.js", | |
"metro.config.js", | |
"jest.config.js" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment