Installation
Installation
$ npm i tynamo --save
$ npm i reflect-metadata --saveEnable decorators and reflect-metata on your tsconfig.json :
{
"types": ["reflect-metadata"],
"compilerOptions": {
"experimentalDecorators": true
"emitDecoratorMetadata": true
...
}
...
}And import reflect-metadata once, your entry file.
import "reflect-metadata";
...Last updated
Was this helpful?