1
0
mirror of https://github.com/waku-org/js-waku.git synced 2025-01-20 17:30:05 +00:00

17 lines
427 B
JavaScript
Raw Normal View History

const packageJson = require("./package.json");
2023-02-28 15:07:11 +11:00
module.exports = {
"treatWarningsAsErrors": false,
"entryPointStrategy": "packages",
"entryPoints": packageJson.workspaces,
"out": "docs",
"excludeInternal": true,
"excludeExternals": true,
"excludeReferences": true,
"exclude": ["**/*.spec.ts", "packages/build-utils", "packages/tests"],
"validation": {
"invalidLink": true,
"notExported": true,
}
};