default_config.js 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. 'use strict';
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. var _deprecated;
  6. function _load_deprecated() {
  7. return _deprecated = require('./deprecated');
  8. }
  9. var _warnings;
  10. function _load_warnings() {
  11. return _warnings = require('./warnings');
  12. }
  13. var _errors;
  14. function _load_errors() {
  15. return _errors = require('./errors');
  16. }
  17. var _example_config;
  18. function _load_example_config() {
  19. return _example_config = _interopRequireDefault(require('./example_config'));
  20. }
  21. var _condition;
  22. function _load_condition() {
  23. return _condition = _interopRequireDefault(require('./condition'));
  24. }
  25. var _utils;
  26. function _load_utils() {
  27. return _utils = require('./utils');
  28. }
  29. function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
  30. exports.default = {
  31. comment: '',
  32. condition: (_condition || _load_condition()).default,
  33. deprecate: (_deprecated || _load_deprecated()).deprecationWarning,
  34. deprecatedConfig: {},
  35. error: (_errors || _load_errors()).errorMessage,
  36. exampleConfig: (_example_config || _load_example_config()).default,
  37. title: {
  38. deprecation: (_utils || _load_utils()).DEPRECATION,
  39. error: (_utils || _load_utils()).ERROR,
  40. warning: (_utils || _load_utils()).WARNING
  41. },
  42. unknown: (_warnings || _load_warnings()).unknownOptionWarning
  43. }; /**
  44. * Copyright (c) 2014-present, Facebook, Inc. All rights reserved.
  45. *
  46. * This source code is licensed under the MIT license found in the
  47. * LICENSE file in the root directory of this source tree.
  48. *
  49. *
  50. */