build-config-standard.js 464 B

123456789101112131415161718192021222324252627
  1. 'use strict';
  2. module.exports = {
  3. // Name of CKEditor instance exposed as global variable by a bundle.
  4. moduleName: 'ClassicEditor',
  5. // Specify path where bundled editor will be saved.
  6. path: '.',
  7. editor: 'editor-classic/classic',
  8. // List of features.
  9. features: [
  10. 'basic-styles/bold',
  11. 'basic-styles/italic',
  12. 'enter',
  13. 'heading',
  14. 'link',
  15. 'list',
  16. 'paragraph',
  17. 'typing',
  18. 'undo'
  19. ],
  20. // The format of the generated bundle.
  21. format: 'iife'
  22. };