René Fritz
René Fritz
I had the same problem. The tree showed after click only. I tried several workarounds. This works for me: ``` constructor(private ref: ChangeDetectorRef){} ngOnInit() { this.myService.getNodes().subscribe(nodes => { this.nodes =...
I'm playing around with deepkit and had also some problems to get config injected. I have a DependenciesUnmetError when I import my Config class from a seperate package/lib in a...
I could resolve the problem by changing the import path setup in tsconfig.json from ``` "@myworkspace/lib-config": ["packages/lib-config/src/index.ts"], ``` to ``` "@myworkspace/lib-config/*": ["packages/lib-config/src/*"], ``` and importing GlobalConfig with it's path ```...
still not fully resolved When starting the app with ts-node ... ``` NODE_ENV=development ts-node -r tsconfig-paths/register -P packages/example/tsconfig.app.json packages/example/src/main.ts ``` it works as described above. But Nx uses Webpack for...
I tested a bit more and tried to debug all kinds of config injection. With ts-node the app starts but the config is not merged from env for a custom...
I've setup a demo repo of the bug: https://github.com/colorcube/deepkit-config-test
This was a bit stupid but also not exactly obvious This config doesn't work: ```typescript export class DatabaseConfig { url = "mongodb://localhost:27017/test" } ``` This works: ```typescript export class DatabaseConfig...
I've just created a NX monorepo typescript ~4.8.2 and angular 15 is the default
I stumbled across this problem again and found my own bugreport :-) ``` @http.POST('/example') async example(exampleDtoList: HttpBody) { ``` HttpBody validation fails: ``` { "message": "Validation error:\n(type): Not an array",...
for me (not a clean install of TYPO3-Distribution) ... - { resource: '../packages/*/Configuration/Distribution/*.yaml', type: glob, optional: true } does not include packages/typo3-error-handling/Configuration/Distribution/Config.yml At least it seems so. Which means the...