In my project I'm generating typescript clients via NSwagStudio.
To add credentails I have a BaseClient class that implements transformOptions
.
export class MyClient extends BaseClient{...
Now I need to add following lines at the beginning of each generated script:
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-nocheck
import { BaseClient } from 'my-components-lib';
Can this be done via NSwagStudio-Configuration and if, how?