build-config-standard.js 445 B

12345678910111213141516171819202122232425
  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. 'typing',
  11. 'undo',
  12. 'basic-styles/bold',
  13. 'basic-styles/italic',
  14. 'headings',
  15. 'paragraph',
  16. 'enter'
  17. ],
  18. // The format of the generated bundle.
  19. format: 'iife'
  20. };