mirror of https://github.com/waku-org/js-waku.git
18 lines
404 B
JavaScript
18 lines
404 B
JavaScript
const packageJson = require("./package.json");
|
|
// Pop last value out: packages/tests
|
|
packageJson.workspaces.pop();
|
|
|
|
module.exports = {
|
|
entryPointStrategy: "packages",
|
|
entryPoints: packageJson.workspaces,
|
|
out: "docs",
|
|
exclude: ["**/*.spec.ts"],
|
|
excludeInternal: true,
|
|
treatWarningsAsErrors: true,
|
|
excludeExternals: true,
|
|
validation: {
|
|
invalidLink: true,
|
|
notExported: true,
|
|
},
|
|
};
|