Give it a name .resxprocessor
Configuration keys:
"tabSize": [number] - indent config (number of spaces in one tab)
"srcFolder": [string] - folder to store/process src (.json) files
"distFolder": [string] - folder to store/process dist (.js) files
"resxPrefix": [string] - this prefix will be added to dist files names (like test[Prefix].[language].js)
"jsNamespace": [string] - namespace for generated dist resources (generated obj will be applied to this namespace)
"languages": Array[string] - list of languages to work with,
"defaultLang": [string] - default language from the list you specified in "languages section"
"currentLangNS": [string] - current language will be taken from this namespace
Configuration example:
{
"tabSize" : 4,
"srcFolder" : "./resxSrc/",
"distFolder" : "./resxDist/",
"resxPrefix" : "Resx",
"jsNamespace" : "ep.resources",
"tsGlobInterface" : "EPResources",
"languages" : [ "en", "ru", "de", "fr", "es", "it", "pl", "sk", "tr" ],
"defaultLang" : "en",
"currentLangNS": "ep.resxCulture"
}