node_modules ignore

This commit is contained in:
2025-05-08 23:43:47 +02:00
parent e19d52f172
commit 4574544c9f
65041 changed files with 10593536 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
'use strict';
const LOCALIZED_FIELDS = [
'biginteger',
'boolean',
'component',
'date',
'datetime',
'decimal',
'dynamiczone',
'email',
'enumeration',
'float',
'integer',
'json',
'media',
'number',
'password',
'richtext',
'blocks',
'string',
'text',
'time'
];
const doesPluginOptionsHaveI18nLocalized = (opts)=>typeof opts === 'object' && opts !== null && 'i18n' in opts && typeof opts.i18n === 'object' && opts.i18n !== null && 'localized' in opts.i18n && typeof opts.i18n.localized === 'boolean';
exports.LOCALIZED_FIELDS = LOCALIZED_FIELDS;
exports.doesPluginOptionsHaveI18nLocalized = doesPluginOptionsHaveI18nLocalized;
//# sourceMappingURL=fields.js.map