Installation
npm i @shiftcoders/dynamo-easy --save
npm i reflect-metadata@^0.1.12 --save
Also install all the required peer dependencies listed in package.json
of @shiftcoders/dynamo-easy
import "reflect-metadata"
If you are using the reflect-metadata api in your project, make sure to include the typings. The type definitions are included in the npm package.
{
"types": ["reflect-metadata"]
}
We make heavy usage of Typescript decorators, so you also need to enable the typescript features
{
"experimentalDecorators": true
"emitDecoratorMetadata": true
}
Last updated
Was this helpful?