But do it during the build process for cjs. Right now we only need this when we transpile from ts directly to es5. This is only the case in our cis build, as for our browser build we only transpile from ts to es6 via ts and then use traceur to do the rest.
		
			
				
	
	
		
			24 lines
		
	
	
		
			670 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			670 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| /**
 | |
|  * @module
 | |
|  * @public
 | |
|  * @description
 | |
|  * The `di` module provides dependency injection container services.
 | |
|  */
 | |
| 
 | |
| export * from './src/di/annotations';
 | |
| export * from './src/di/decorators';
 | |
| export * from './src/di/forward_ref';
 | |
| export {resolveBindings, Injector} from './src/di/injector';
 | |
| export {Binding, ResolvedBinding, Dependency, bind} from './src/di/binding';
 | |
| export {Key, KeyRegistry, TypeLiteral} from './src/di/key';
 | |
| export {
 | |
|   NoBindingError,
 | |
|   AbstractBindingError,
 | |
|   AsyncBindingError,
 | |
|   CyclicDependencyError,
 | |
|   InstantiationError,
 | |
|   InvalidBindingError,
 | |
|   NoAnnotationError
 | |
| } from './src/di/exceptions';
 | |
| export {OpaqueToken} from './src/di/opaque_token';
 |