Imagine having a TypeScript interface as follows:
interface Settings {
id?: number
tag: string
}
Is there a way to ensure that all .json
files within a specific directory adhere to these requirements?
If VS Code does not offer this functionality, are there alternative methods for validating the files?