1 | 'use strict';
|
2 |
|
3 | Object.defineProperty(exports, '__esModule', {
|
4 | value: true
|
5 | });
|
6 | exports.default = void 0;
|
7 |
|
8 |
|
9 |
|
10 |
|
11 |
|
12 |
|
13 |
|
14 | const config = {
|
15 | comment: ' A comment',
|
16 | condition: () => true,
|
17 | deprecate: () => false,
|
18 | deprecatedConfig: {
|
19 | key: () => 'Deprecation message'
|
20 | },
|
21 |
|
22 | error: () => {},
|
23 | exampleConfig: {
|
24 | key: 'value',
|
25 | test: 'case'
|
26 | },
|
27 | recursive: true,
|
28 | recursiveDenylist: [],
|
29 | title: {
|
30 | deprecation: 'Deprecation Warning',
|
31 | error: 'Validation Error',
|
32 | warning: 'Validation Warning'
|
33 | },
|
34 |
|
35 | unknown: () => {}
|
36 | };
|
37 | var _default = config;
|
38 | exports.default = _default;
|