Created
March 2, 2019 16:23
-
-
Save DimosthenisK/d4a044014e77b9fe73124fd657fbbd57 to your computer and use it in GitHub Desktop.
Sample TSConfig
This file contains 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 characters
Show hidden characters
{ | |
"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" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment