Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | 1x | export const COMPODOC_DEFAULTS = {
title: 'Application documentation',
additionalEntryName: 'Additional documentation',
additionalEntryPath: 'additional-documentation',
folder: './documentation/',
hostname: '127.0.0.1',
port: 8080,
theme: 'gitbook',
exportFormat: 'html',
exportFormatsSupported: ['html', 'json', 'pdf'],
base: '/',
defaultCoverageThreshold: 70,
defaultCoverageMinimumPerFile: 0,
coverageTestThresholdFail: true,
toggleMenuItems: ['all'],
navTabConfig: [],
disableSourceCode: false,
disableDomTree: false,
disableTemplateTab: false,
disableStyleTab: false,
disableGraph: false,
disableMainGraph: false,
disableCoverage: false,
disablePrivate: false,
disableProtected: false,
disableInternal: false,
disableLifeCycleHooks: false,
disableRoutesGraph: false,
disableDependencies: false,
PAGE_TYPES: {
ROOT: 'root',
INTERNAL: 'internal'
},
gaSite: 'auto',
coverageTestShowOnlyFailed: false,
language: 'en-US'
};
|