Simone De Cristofaro
Simone De Cristofaro
I've also checked that it couldn't be a problem of version difference between the main project and the library. In my case the npm dependency: `"class-transformer": "^0.2.3"` is declared only...
The problem with the "class-transformer" library is caused by `npm link`. My situation is the following: * I've a project A that has "class-transformer" as dependency * I've project B...
In my case I didn't touch the package.json file. I did the following: * `yalc publish` in the library project folder * `yalc link ` in the consuming project
A possible workaround could be: ```typescript const DEFAULT_ERROR_KEY: number = "default" as unknown as number @responses({ 200: { description: "success", [DEFAULT_ERROR_KEY]: {description: "default error"} }) ```