-
I've downloaded the latest version of Inversify (1.2.0) and have Typescript (1.7.3). But when trying to use your documentation to change just two files in my project and compile with tsc I get:
_err…
-
Problem: Currently we rely on the constructor argument names to inject dependencies. This causes problems with minification (as the argument name is changed) and injecting two dependencies of the same…
-
Need to investigate issue reported in the support chat:
> I have a problem with inversify (1.3.0), when doing this:
> declare function require(moduleName: string): any;
> var kernel = require('invers…
-
When `import { TypeBinding, Kernel } from 'inversify';` getting an `error TS2307: Cannot find module 'inversify'`.
tsconfig.json:
```
{
"compilerOptions": {
"target": "ES5",
"module": "co…
-
Some ES7 Decorator examples would be awesome!
It would also be nice to see how u could take advantage of meta-data proposal too - https://github.com/rbuckton/ReflectDecorators
-
Hi @inversify/collaborators, is there any news on the release progress of `2.0.0-alpha.0`?
It would be good to get working again towards the roadmap! :fireworks: :smile:
-
These are my current ideas of the MobX roadmap (excluding minor improvements), feel free to add your suggestions!
#2.2
- [x] introduce `intercept`, the counterpart of `observe` to be able to intercept…
-
When using `noImplicitAny: true` I get the following error:
``` sh
inversify.d.ts(76,9): error TS7010: 'addPlan', which lacks return-type annotation, implicitly has an 'any' return type.
```
-
## Context
Consider the case in which I want to build an object whose dependencies might change over time. For instance let's say I want an object that requires the current date.
``` typescript
inte…
-
I may be wrong but from what I see dependencies are being resolved at runtime right? If that's the case, wouldn't it be possible to "dump" a file with all the dependencies resolved?