We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce70347 commit abd64a2Copy full SHA for abd64a2
1 file changed
README.md
@@ -43,6 +43,30 @@ The CLI requires a specific project structure:
43
- Event-driven Lambda functions must:
44
- Use the prefix `EVENT_` (e.g., `EVENT_DataProcessor`)
45
- Start with a capital letter
46
+
47
+### Example tsconfig
48
49
+```
50
+{
51
+ "compilerOptions": {
52
+ "target": "es2020",
53
+ "experimentalDecorators": true,
54
+ "emitDecoratorMetadata": true,
55
+ "module": "commonjs",
56
+ "moduleResolution": "node",
57
+ "baseUrl": "./",
58
+ "outDir": "./build",
59
+ "esModuleInterop": true,
60
+ "forceConsistentCasingInFileNames": true,
61
+ "strict": true,
62
+ "skipLibCheck": true,
63
+ "allowJs": true, // this is to allow custom authorizer
64
+ "paths": {
65
+ "povery": ["node_modules/povery"]
66
+ }
67
+ },
68
+}
69
70
71
## Installation
72
0 commit comments