12345678910111213141516171819202122232425262728 |
- /**
- * @class Ext.Manifest
- * **This is not a real JavaScript class and cannot be created. This is for documentation purposes only.**
- *
- * This documentation is for {@link Ext#manifest Ext.manifest}
- * @since 5.0.0
- */
- /**
- * @cfg {String/Object} compatibility
- * An object keyed by package name with the value being to desired compatibility level as a
- * version number. If this is just a string, this version is assumed to apply to the framework.
- * Setting this value to less than 5 for 'ext' will enable the compatibility layer to assist
- * in the application upgrade process. For details on the upgrade process, see the
- * (Upgrade Guide)[#/guides/upgrade_50].
- */
- /**
- * @cfg {Object} debug
- * An object configuring the debugging characteristics of the framework. See `Ext.debugConfig`
- * which is set to this value.
- */
- /**
- * @cfg {Object} packages
- * An object keyed by package name with the value being a subset of the package's `"package.json"`
- * descriptor.
- */
|