-
Notifications
You must be signed in to change notification settings - Fork 23
/
api-extractor.json
45 lines (39 loc) · 1.02 KB
/
api-extractor.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
// Matches the end_of_line setting in .editorconfig
"newlineKind": "lf",
"dtsRollup": {
"enabled": true,
"untrimmedFilePath": "<projectFolder>/dist/index.d.ts"
},
"apiReport": {
"enabled": true,
"reportFolder": "reports",
"reportTempFolder": "<projectFolder>/dist/api"
},
"docModel": {
"enabled": true
},
// Avoid generating tsdoc-metadata.json
// https://github.com/microsoft/rushstack/pull/1628#issuecomment-553665782
"tsdocMetadata": {
"enabled": false
},
"messages": {
"extractorMessageReporting": {
// Avoid having to explicitly mark every exported API member with @public tag
"ae-missing-release-tag": {
"logLevel": "none"
},
// Avoid issues with TSDoc parser unable to process @link references
"ae-unresolved-link": {
"logLevel": "none"
}
},
"tsdocMessageReporting": {
// https://github.com/Microsoft/tsdoc/issues/19
"tsdoc-param-tag-with-invalid-name": {
"logLevel": "none"
}
}
}
}