├── .github └── workflows │ ├── ci.yaml │ ├── pr-coverage.yaml │ └── release.yaml ├── .gitignore ├── .prettierrc ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── package.json ├── src ├── injectable.spec.ts └── injectable.ts ├── tsconfig.build.json ├── tsconfig.json └── tslint.json /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentstream/nestjs-injectable/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentstream/nestjs-injectable/HEAD/.github/workflows/pr-coverage.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentstream/nestjs-injectable/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentstream/nestjs-injectable/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentstream/nestjs-injectable/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentstream/nestjs-injectable/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentstream/nestjs-injectable/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentstream/nestjs-injectable/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentstream/nestjs-injectable/HEAD/package.json -------------------------------------------------------------------------------- /src/injectable.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentstream/nestjs-injectable/HEAD/src/injectable.spec.ts -------------------------------------------------------------------------------- /src/injectable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentstream/nestjs-injectable/HEAD/src/injectable.ts -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentstream/nestjs-injectable/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentstream/nestjs-injectable/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentstream/nestjs-injectable/HEAD/tslint.json --------------------------------------------------------------------------------