forked from microsoft/FluidFramework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapi-extractor-base.esm.json
20 lines (20 loc) · 984 Bytes
/
api-extractor-base.esm.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json",
"extends": "./api-extractor-base.json",
"mainEntryPointFilePath": "<projectFolder>/lib/index.d.ts",
"apiReport": {
"enabled": true
},
// API-Extractor uses the presence of this file in an npm package to determine whether or not its API members
// should be considered when making decisions about reports and rollups in consuming packages.
// This includes determining whether or not release tags on external members should be respected when
// making trimming decisions.
// We need to ensure this is enabled so that re-exports of API members across package boundaries are correctly
// trimmed based on their release tags.
// For more details on this option, see:
// <https://api-extractor.com/pages/configs/api-extractor_json/#tsdoc-metadata-section>.
"tsdocMetadata": {
"enabled": true,
"tsdocMetadataFilePath": "<projectFolder>/lib/tsdoc-metadata.json"
}
}