@dynamo-dot-subscribe/observable-dynamo
Version:
A very thin wrapper around the [AWS SDK v3 DynamoDB client](https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-dynamodb) which converts all of their commands to [Observables](https://rxjs-dev.firebaseapp.com/guide/observable). The API to use th
32 lines (31 loc) • 591 B
JSON
{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"lib": [
"es6"
],
"outDir": "./lib/",
"rootDir": "./src/",
"forceConsistentCasingInFileNames": true,
"jsx": "react",
"declaration": true,
"sourceMap": true,
"inlineSources": true,
"experimentalDecorators": true,
"strictNullChecks": true,
"types": [
"node"
],
"strict": true,
"noImplicitAny": true,
"esModuleInterop": true
},
"include": [
"**/*.ts"
],
"exclude": [
"node_modules",
"lib"
]
}