Created
May 20, 2018 13:35
-
-
Save saurabhpati/4f681572f5c03683eca7a804c8b80c78 to your computer and use it in GitHub Desktop.
tsconfig.json for setting up a project for a React application with typescript
This file contains 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": { | |
"allowSyntheticDefaultImports": true, | |
"jsx": "react", | |
"module": "commonjs", | |
"noImplicitAny": true, | |
"outDir": "./build/", | |
"preserveConstEnums": true, | |
"removeComments": true, | |
"sourceMap": true, | |
"target": "es5" | |
}, | |
"include": [ | |
"./src/**/**/*" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment