Skip to content

Commit abefe31

Browse files
author
Joe Snell
committed
Add tsconfig and update readme
1 parent 5bf466a commit abefe31

File tree

3 files changed

+33
-1
lines changed

3 files changed

+33
-1
lines changed

languages/python/example/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Python Parameter Store Lambda Extension Example
22

3-
This directory contains an example [CDK Stack](https://github.com/aws/aws-cdk) with a lambda function that utilizes the [Parameter Store Lambda Extension]().
3+
This directory contains an example [CDK Stack](https://github.com/aws/aws-cdk) with a lambda function that utilizes the [Parameter Store Lambda Extension](https://github.com/lambda-extensions/parameter-store).
44

55
## Requirements
66

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
node_modules
2+
cdk.out
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"compilerOptions": {
3+
"resolveJsonModule": true,
4+
"target": "ES2018",
5+
"module": "commonjs",
6+
"lib": [
7+
"es2018"
8+
],
9+
"declaration": true,
10+
"strict": true,
11+
"noImplicitAny": true,
12+
"strictNullChecks": true,
13+
"noImplicitThis": true,
14+
"alwaysStrict": true,
15+
"noUnusedLocals": false,
16+
"noUnusedParameters": false,
17+
"noImplicitReturns": true,
18+
"noFallthroughCasesInSwitch": false,
19+
"inlineSourceMap": true,
20+
"inlineSources": true,
21+
"experimentalDecorators": true,
22+
"strictPropertyInitialization": false,
23+
"typeRoots": [
24+
"./node_modules/@types"
25+
]
26+
},
27+
"exclude": [
28+
"cdk.out",
29+
"node_modules"
30+
]
31+
}

0 commit comments

Comments
 (0)