Created
March 2, 2019 16:23
-
-
Save DimosthenisK/d4a044014e77b9fe73124fd657fbbd57 to your computer and use it in GitHub Desktop.
Revisions
-
DimosthenisK created this gist
Mar 2, 2019 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal 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" ] }