Skip to content

Instantly share code, notes, and snippets.

@Anveio
Created July 29, 2017 16:49
Show Gist options
  • Save Anveio/d33197f52812a4761ae9bf844c4af47b to your computer and use it in GitHub Desktop.
Save Anveio/d33197f52812a4761ae9bf844c4af47b to your computer and use it in GitHub Desktop.
tsconfig for typescript-lambda-example
{
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"lib": [ "es6", "dom" ],
"moduleResolution": "node",
"rootDir": "./",
"sourceMap": true,
"allowJs": true,
"noImplicitAny": true,
"noUnusedLocals": true,
"noImplicitThis": true,
"strictNullChecks": true,
"noImplicitReturns": true,
"preserveConstEnums": true,
"suppressImplicitAnyIndexErrors": true,
"forceConsistentCasingInFileNames": true
},
"exclude": [ "node_modules", "build", "webpack" ],
"types": [ "typePatches" ]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment