Skip to content

Instantly share code, notes, and snippets.

@eladb
Last active November 10, 2019 16:45
Show Gist options
  • Save eladb/85502ca35543eda6c0d728358f3d3568 to your computer and use it in GitHub Desktop.
Save eladb/85502ca35543eda6c0d728358f3d3568 to your computer and use it in GitHub Desktop.
my tsconfig.json
{
"compilerOptions": {
"alwaysStrict": true,
"charset": "utf8",
"declaration": true,
"experimentalDecorators": true,
"inlineSourceMap": true,
"inlineSources": true,
"lib": [
"es2016"
],
"module": "CommonJS",
"noEmitOnError": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"resolveJsonModule": true,
"strict": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"stripInternal": true,
"target": "ES2017"
},
"include": [
"**/*.ts"
],
"exclude": [
"node_modules"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment