-
Notifications
You must be signed in to change notification settings - Fork 303
Expand file tree
/
Copy pathapi-extractor.json
More file actions
35 lines (35 loc) · 944 Bytes
/
api-extractor.json
File metadata and controls
35 lines (35 loc) · 944 Bytes
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
{
"mainEntryPointFilePath": "<projectFolder>/lib/dts/index.d.ts",
"apiReport": {
// turn off
"enabled": false
},
"docModel": {
// turn off
"enabled": false
},
"dtsRollup": {
// Whether to generate the .d.ts rollup file.
"enabled": true,
// Where we wanna create our .d.ts rollup
"untrimmedFilePath": "<projectFolder>/lib/index.d.ts"
},
"messages": {
// turn off various warnings, that might not be useful right now
// check the official docs for more!
"extractorMessageReporting": {
"default": {
"logLevel": "none"
},
"ae-forgotten-export": {
"logLevel": "none"
},
// 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.
"ae-wrong-input-file-type": {
"logLevel": "none"
}
}
}
}