@polkadot/dev
Version:
A collection of shared CI scripts and development environment used by @polkadot projects
19 lines (17 loc) • 459 B
JavaScript
// Copyright 2017-2025 @polkadot/dev authors & contributors
// SPDX-License-Identifier: Apache-2.0
module.exports = {
exclude: '**/*+(index|e2e|spec|types).ts',
excludeExternals: true,
excludeNotExported: true,
excludePrivate: true,
excludeProtected: true,
hideGenerator: true,
includeDeclarations: false,
module: 'commonjs',
moduleResolution: 'node',
name: 'polkadot{.js}',
out: 'docs',
stripInternal: 'true',
theme: 'markdown'
};