Skip to content

Instantly share code, notes, and snippets.

@RichardBray
Created January 10, 2018 11:12
Show Gist options
  • Save RichardBray/d6b1653c40d76757fec0e5ac10990d5b to your computer and use it in GitHub Desktop.
Save RichardBray/d6b1653c40d76757fec0e5ac10990d5b to your computer and use it in GitHub Desktop.
Simple ts configuraiton
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"jsx": "react",
"module": "commonjs",
"noImplicitAny": true,
"outDir": "./build/",
"preserveConstEnums": true,
"removeComments": true,
"sourceMap": true,
"noImplicitAny": true,
"target": "es5"
},
"include": [
"./src/**/*"
]
}
@AnarhistMS
Copy link

Hi there.
"noImplicitAny": true
is written twice. VScode highlighted me that.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment