Skip to content

Instantly share code, notes, and snippets.

@gaborpinterweb
Created June 26, 2017 12:34
Show Gist options
  • Save gaborpinterweb/3f0e3763a2699c59c3a6af636bc53c00 to your computer and use it in GitHub Desktop.
Save gaborpinterweb/3f0e3763a2699c59c3a6af636bc53c00 to your computer and use it in GitHub Desktop.

Revisions

  1. Gábor Pintér created this gist Jun 26, 2017.
    21 changes: 21 additions & 0 deletions tsconfig.json
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,21 @@
    {
    "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"
    }
    }