X Tutup
Skip to content

Commit fdd3f50

Browse files
committed
Update some docs
1 parent 846f118 commit fdd3f50

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

apps/api-extractor/src/api/IConfigFile.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export interface IConfigCompiler {
2424
tsconfigFilePath?: string;
2525

2626
/**
27-
* Provides already parsed tsconfig.json contents.
27+
* Provides a compiler configuration that will be used instead of reading the tsconfig.json file from disk.
2828
*
2929
* @remarks
3030
* The value must conform to the TypeScript tsconfig schema:
@@ -107,7 +107,7 @@ export interface IConfigApiReport {
107107
*/
108108
export interface IConfigDocModel {
109109
/**
110-
* Whether to generate doc model file.
110+
* Whether to generate a doc model file.
111111
*/
112112
enabled: boolean;
113113

apps/api-extractor/src/schemas/api-extractor-template.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
* SUPPORTED TOKENS: <lookup>
3333
* DEFAULT VALUE: "<lookup>"
3434
*/
35-
// "projectFolder": "",
35+
// "projectFolder": "..",
3636

3737
/**
3838
* (REQUIRED) Specifies the .d.ts file to be used as the starting point for analysis. API Extractor
@@ -65,7 +65,7 @@
6565
// "tsconfigFilePath": "<projectFolder>/tsconfig.json",
6666

6767
/**
68-
* Provides compiler configuration that will be used instead of reading the tsconfig.json file from disk.
68+
* Provides a compiler configuration that will be used instead of reading the tsconfig.json file from disk.
6969
* The object must conform to the TypeScript tsconfig schema:
7070
*
7171
* http://json.schemastore.org/tsconfig
@@ -145,7 +145,7 @@
145145
*/
146146
"docModel": {
147147
/**
148-
* (REQUIRED) Whether to generate doc model file.
148+
* (REQUIRED) Whether to generate a doc model file.
149149
*/
150150
"enabled": true,
151151

apps/api-extractor/src/schemas/api-extractor.schema.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@
2828
"type": "object",
2929
"properties": {
3030
"tsconfigFilePath": {
31-
"description": " Specifies the path to the tsconfig.json file to be used by API Extractor when analyzing the project. The path is resolved relative to the folder of the config file that contains the setting; to change this, prepend a folder token such as \"<projectFolder>\". Note: This setting will be ignored if \"overrideTsconfig\" is used.",
31+
"description": "Specifies the path to the tsconfig.json file to be used by API Extractor when analyzing the project. The path is resolved relative to the folder of the config file that contains the setting; to change this, prepend a folder token such as \"<projectFolder>\". Note: This setting will be ignored if \"overrideTsconfig\" is used.",
3232
"type": "string"
3333
},
3434
"overrideTsconfig": {
35-
"description": "Provides already parsed tsconfig.json contents conforming to the TypeScript tsconfig schema: http://json.schemastore.org/tsconfig If omitted, then the tsconfig.json file will be read from the \"projectFolder\".",
35+
"description": "Provides a compiler configuration that will be used instead of reading the tsconfig.json file from disk. The object must conform to the TypeScript tsconfig schema: http://json.schemastore.org/tsconfig If omitted, then the tsconfig.json file will be read from the \"projectFolder\".",
3636
"type": "object"
3737
},
3838
"skipLibCheck": {

0 commit comments

Comments
 (0)
X Tutup