Skip to content

Instantly share code, notes, and snippets.

@gaboratorium
Created June 26, 2017 12:34
Show Gist options
  • Save gaboratorium/3f0e3763a2699c59c3a6af636bc53c00 to your computer and use it in GitHub Desktop.
Save gaboratorium/3f0e3763a2699c59c3a6af636bc53c00 to your computer and use it in GitHub Desktop.
Ultimate TypeScript #typescript #ts #tsconfig
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"allowJs": false,
"allowUnreachableCode": false,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"alwaysStrict": true,
"noImplicitAny": true,
"noUnusedLocals": true,
"removeComments": true,
"preserveConstEnums": true,
"noUnusedParameters": true,
"noImplicitUseStrict": true,
"pretty": true,
"diagnostics": true,
"moduleResolution": "node"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment