options for the configuration.json (or .js) entry; if FALSE, the resource will be ignored
options-map for the dictionary.json (or .js) entries where id is (usually) the language code; if false
, these resources will be ignored
pattern for excluding settings: if pattern matches SettingsEntryOptions.type, the settings will be excluded
options-map for the grammar.json (or .js) entries where id is (usually) the language code; if false
, these resources will be ignored
can be used to include the resource as separate file, instead of bundeling via webpack
file path for searching settings:
path/.../<language ID>/grammar.[json | js]
/dictionary.[json | js]
/speech.[json | js]
configuration.[json | js]
options-map for the speech.json (or .js) entries where id is (usually) the language code; if false
, these resources will be ignored
Generated using TypeDoc
var settingOptions = { path: path.resolve('./config'), configuration: false, grammar: { ja: {exclude: true} }, speech: { de: {exclude: true}, en: {include: 'file'} }, dictionary: { ja: {include: 'file'} } };