-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathapi-extractor.json
More file actions
47 lines (47 loc) · 1.37 KB
/
api-extractor.json
File metadata and controls
47 lines (47 loc) · 1.37 KB
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
46
47
{
"$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json",
"mainEntryPointFilePath": "<projectFolder>/dist/dist-esm/index.d.ts",
"newlineKind": "lf",
"apiReport": {
"enabled": true,
"reportFolder": "<projectFolder>/review/beta/"
},
"docModel": {
"enabled": true
},
"dtsRollup": {
"enabled": true
},
"messages": {
"extractorMessageReporting": {
"ae-missing-release-tag": {
"logLevel": "error"
},
"ae-unresolved-link": {
// This must be set to none, as when our individual packlets reference exports
// from other packlets this throws an error. Ideally we should turn this on just
// for the communication-react api.md file.
"logLevel": "none"
},
"ae-forgotten-export": {
"logLevel": "error",
"addToApiReportFile": false
},
"ae-incompatible-release-tags": {
"logLevel": "none",
"addToApiReportFile": false
},
"ae-wrong-input-file-type": {
// Disable this validation at your own risk: Processing an incorrect file type
// may lead to other errors. Function bodies may incorrectly get emitted in the
// .d.ts rollup.
"logLevel": "none"
}
},
"tsdocMessageReporting": {
"tsdoc-undefined-tag": {
"logLevel": "none"
}
}
}
}