migrate Lambda implementation from python -> node [#80]

This commit is contained in:
Brandon Liu
2022-10-19 23:01:53 +08:00
parent 814761e152
commit 6ed943d156
11 changed files with 642 additions and 265 deletions

View File

@@ -0,0 +1,16 @@
{
"compilerOptions": {
"target": "es2020",
"strict": true,
"preserveConstEnums": true,
"noEmit": true,
"sourceMap": false,
"module":"commonjs",
"moduleResolution":"node",
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
},
"exclude": ["node_modules"]
}