Option to dump configuration file in some specific folder for cache purposes and for compiled typescript
const container = new ContainerBuilder(false, '/path/to/src')
const autowire = new Autowire(container)
autowire.enableDump('/path/store/services.yaml') # yaml option
autowire.enableDump('/path/store/services.js') # js option
autowire.enableDump('/path/store/services.json') # json option
await autowire.process()
// at this point services file will be created.
Option to dump configuration file in some specific folder for cache purposes and for compiled typescript