2022-12-20 13:48:16 +00:00
|
|
|
const packageJson = require("./package.json");
|
2023-02-28 04:07:11 +00:00
|
|
|
|
2022-12-20 13:48:16 +00:00
|
|
|
module.exports = {
|
2023-09-21 08:57:37 +00:00
|
|
|
"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,
|
|
|
|
}
|
2022-12-20 13:48:16 +00:00
|
|
|
};
|