You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The API reports now use the file extension ".api.md" instead of ".api.ts" since they don't contain semantically valid TypeScript, and this was confusing some tools
Copy file name to clipboardExpand all lines: apps/api-extractor/src/schemas/api-extractor.schema.json
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -92,7 +92,7 @@
92
92
},
93
93
94
94
"apiReviewFile": {
95
-
"description": "Configures how the API review files (*.api.ts) will be generated.",
95
+
"description": "Configures how the API review files (*.api.md) will be generated.",
96
96
"type": "object",
97
97
"properties": {
98
98
"enabled": {
@@ -104,7 +104,7 @@
104
104
"type": "string"
105
105
},
106
106
"tempFolder": {
107
-
"description": "The *.api.ts report is saved into this folder. During a production build, the temporary file will be compared with the file in apiReviewFolder; if there are differences, and error will be reported. The default value is \"./temp\".",
107
+
"description": "The *.api.md report is saved into this folder. During a production build, the temporary file will be compared with the file in apiReviewFolder; if there are differences, and error will be reported. The default value is \"./temp\".",
108
108
"type": "string"
109
109
}
110
110
},
@@ -231,7 +231,7 @@
231
231
},
232
232
"addToApiReviewFile": {
233
233
"type": "boolean",
234
-
"description": "If API Extractor is configured to write an API review file (.api.ts), then the message will be written inside that file. If the API review file is NOT being written, then the message is instead logged according to the \"logLevel\" option."
234
+
"description": "If API Extractor is configured to write an API review file (.api.md), then the message will be written inside that file. If the API review file is NOT being written, then the message is instead logged according to the \"logLevel\" option."
0 commit comments