Created
January 10, 2018 11:12
-
-
Save RichardBray/d6b1653c40d76757fec0e5ac10990d5b to your computer and use it in GitHub Desktop.
Simple ts configuraiton
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
{ | |
"compilerOptions": { | |
"allowSyntheticDefaultImports": true, | |
"jsx": "react", | |
"module": "commonjs", | |
"noImplicitAny": true, | |
"outDir": "./build/", | |
"preserveConstEnums": true, | |
"removeComments": true, | |
"sourceMap": true, | |
"noImplicitAny": true, | |
"target": "es5" | |
}, | |
"include": [ | |
"./src/**/*" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi there.
"noImplicitAny": true
is written twice. VScode highlighted me that.