scripts/api-extractor: disable all inline warnings

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2021-04-14 20:00:37 +02:00
parent c04a465330
commit 658de01647
16 changed files with 24 additions and 772 deletions
+5 -5
View File
@@ -133,9 +133,9 @@ async function runApiExtraction({
},
messages: {
// Silence warnings, as these will prevent the CI build to work
compilerMessageReporting: {
default: {
// Silence compiler warnings, as these will prevent the CI build to work
logLevel: 'none' as ExtractorLogLevel.None,
// These contain absolute file paths, so can't be included in the report
// addToApiReportFile: true,
@@ -143,14 +143,14 @@ async function runApiExtraction({
},
extractorMessageReporting: {
default: {
logLevel: 'warning' as ExtractorLogLevel.Warning,
addToApiReportFile: true,
logLevel: 'none' as ExtractorLogLevel.Warning,
// addToApiReportFile: true,
},
},
tsdocMessageReporting: {
default: {
logLevel: 'warning' as ExtractorLogLevel.Warning,
addToApiReportFile: true,
logLevel: 'none' as ExtractorLogLevel.Warning,
// addToApiReportFile: true,
},
},
},