I have a folder with i18n texts with files like this: texts.json and its translations: texts-en.json, texts-fr.json etc.
I am trying to use fileSuffixToExtension to nest all other files under texts.json but it does not work. Apparently wildcard is not supported. Is it possible?
"fileSuffixToExtension": {
"add": {
"-*.json": [
".json"
]
}
},

Right now apparently
fileSuffixToExtensiondoes not support wildcard because even the JSON schema recognize that:So I have to manually add one entry for each language code (using some quick JS code to auto generate them).
I have submitted a feature request here