build-config-standard.js 333 B

1234567891011121314151617181920
  1. 'use strict';
  2. module.exports = {
  3. // Name of CKEditor instance exposed as global variable by a bundle.
  4. moduleName: 'ClassicEditor',
  5. editor: 'editor-classic/classic',
  6. // List of features.
  7. features: [
  8. 'delete',
  9. 'typing',
  10. 'undo',
  11. 'basic-styles/bold',
  12. 'basic-styles/italic',
  13. 'headings',
  14. 'paragraph',
  15. 'enter'
  16. ]
  17. };