Installation
Install the Hercules SDK and configure peer dependencies
Install the Package
npm install @code0-tech/herculesTypeScript Configuration
Hercules uses decorators with reflect-metadata. Enable the following options in your tsconfig.json:
{
"compilerOptions": {
"experimentalDecorators": true,
"emitDecoratorMetadata": true
}
}