Skip to content

Instantly share code, notes, and snippets.

@DimosthenisK
Created March 2, 2019 16:23
Show Gist options
  • Save DimosthenisK/d4a044014e77b9fe73124fd657fbbd57 to your computer and use it in GitHub Desktop.
Save DimosthenisK/d4a044014e77b9fe73124fd657fbbd57 to your computer and use it in GitHub Desktop.
Sample TSConfig
{
"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