Take a look at my code snippet:
import { ApiController, Controller } from "./lib/rest";
[Controller("test")];
export class TestController extends ApiController {}
Interestingly enough, vscode keeps inserting a trailing comma after the decorator.
[Controller("test")];
I've been struggling to find a way to stop this behavior specifically for decorators.
If anyone could offer some guidance on this issue, I would greatly appreciate it.