Skip to content

Instantly share code, notes, and snippets.

@amrfarid140
Last active April 13, 2018 18:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amrfarid140/852c678f25d55043601f47c945433fd6 to your computer and use it in GitHub Desktop.
Save amrfarid140/852c678f25d55043601f47c945433fd6 to your computer and use it in GitHub Desktop.
TypeScript configuration file
{
"compilerOptions": {
"module": "commonjs",
"target": "es5",
"lib": ["es6", "dom","es2015","es5","es2015.promise","es2015.iterable"],
"sourceMap": true,
"allowJs": false,
"moduleResolution": "node",
"experimentalDecorators": true,
"rootDir": "./",
"forceConsistentCasingInFileNames": true,
"suppressImplicitAnyIndexErrors": true,
"allowSyntheticDefaultImports": true,
"strictNullChecks":false,
"noImplicitAny": false,
"downlevelIteration": true
},
"exclude": [
"node_modules"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment