Skip to content

Instantly share code, notes, and snippets.

@DimosthenisK
Created March 2, 2019 16:23
Show Gist options
  • Select an option

  • Save DimosthenisK/d4a044014e77b9fe73124fd657fbbd57 to your computer and use it in GitHub Desktop.

Select an option

Save DimosthenisK/d4a044014e77b9fe73124fd657fbbd57 to your computer and use it in GitHub Desktop.

Revisions

  1. DimosthenisK created this gist Mar 2, 2019.
    26 changes: 26 additions & 0 deletions tsconfig.json
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,26 @@
    {
    "compilerOptions": {
    "module": "commonjs",
    "target": "es2018",
    "outDir": "dist",
    "inlineSourceMap": true,
    "inlineSources": true,
    "sourceMap": true,
    "emitDecoratorMetadata": true,
    "experimentalDecorators": true,
    "noImplicitAny": false,
    "typeRoots": [
    "./types",
    "./node_modules/@types"
    ],
    "forceConsistentCasingInFileNames": true,
    "noImplicitReturns": true,
    "strict": true
    },
    "include": [
    "src/**/*.ts"
    ],
    "exclude": [
    "node_modules"
    ]
    }