Skip to content

Instantly share code, notes, and snippets.

@pavelvlasov
Last active January 20, 2018 00:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pavelvlasov/7057472dd2edb41476abd88456b8242c to your computer and use it in GitHub Desktop.
Save pavelvlasov/7057472dd2edb41476abd88456b8242c to your computer and use it in GitHub Desktop.
Github stats bot, part I, tsconfig
{
"compilerOptions": {
"baseUrl": "./",
"rootDir": "./",
"paths": {
"@/*": ["./app/*"]
},
"module": "commonjs",
"target": "es5",
"lib": ["es6", "esnext.asynciterable"],
"moduleResolution": "node",
"sourceMap": true,
"allowJs": true,
"noImplicitAny": false,
"noUnusedLocals": true,
"noImplicitThis": true,
"strictNullChecks": true,
"noImplicitReturns": true,
"preserveConstEnums": true,
"suppressImplicitAnyIndexErrors": true,
"forceConsistentCasingInFileNames": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"jsx": "react"
},
"exclude": ["node_modules", "./scripts"],
"types": ["typePatches", "jest", "aws-sdk"],
"awesomeTypescriptLoaderOptions": {
"transpileOnly": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment