|
8 | 8 | * Optionally specifies another JSON config file that this file extends from. This provides a way for |
9 | 9 | * standard settings to be shared across multiple projects. |
10 | 10 | * |
11 | | - * If the path starts with "." or "..", the path is resolved relative to the folder of the file with |
| 11 | + * If the path starts with "./" or "../", the path is resolved relative to the folder of the file with |
12 | 12 | * the "extends" field. Otherwise, the first path segment is interpreted as an NPM package name, and will be |
13 | 13 | * resolved using NodeJS require(). |
14 | 14 | * |
|
24 | 24 | * The file extension must be ".d.ts" and not ".ts". |
25 | 25 | * The path is resolved relative to the "rootFolder" location described below. |
26 | 26 | */ |
27 | | - "mainEntryPointFile": "./lib/index.d.ts", |
| 27 | + "mainEntryPointFile": "lib/index.d.ts", |
28 | 28 |
|
29 | 29 | /** |
30 | 30 | * Determines how the TypeScript compiler engine will be invoked by API Extractor. |
|
98 | 98 | * |
99 | 99 | * The path is resolved relative to the "rootFolder" location. |
100 | 100 | * |
101 | | - * DEFAULT VALUE: "./etc" |
| 101 | + * DEFAULT VALUE: "etc/" |
102 | 102 | */ |
103 | | - // "reportFolder": "./etc", |
| 103 | + // "reportFolder": "etc/", |
104 | 104 |
|
105 | 105 | /** |
106 | 106 | * Specifies the folder where the temporary report file is written. The file name portion is determined by |
|
111 | 111 | * |
112 | 112 | * The path is resolved relative to the "rootFolder" location. |
113 | 113 | * |
114 | | - * DEFAULT VALUE: "./temp" |
| 114 | + * DEFAULT VALUE: "temp/" |
115 | 115 | */ |
116 | | - // "tempFolder": "./temp" |
| 116 | + // "tempFolder": "temp/" |
117 | 117 | }, |
118 | 118 |
|
119 | 119 | /** |
|
130 | 130 | * |
131 | 131 | * The path is resolved relative to the "rootFolder" location. |
132 | 132 | * |
133 | | - * DEFAULT VALUE: "./temp/<unscopedPackageName>.api.json" |
| 133 | + * DEFAULT VALUE: "temp/<unscopedPackageName>.api.json" |
134 | 134 | */ |
135 | | - // "apiJsonFilePath": "./temp/<unscopedPackageName>.api.json" |
| 135 | + // "apiJsonFilePath": "temp/<unscopedPackageName>.api.json" |
136 | 136 | }, |
137 | 137 |
|
138 | 138 | /** |
|
152 | 152 | * |
153 | 153 | * The path is resolved relative to the "rootFolder" location. |
154 | 154 | * |
155 | | - * DEFAULT VALUE: "./dist/<unscopedPackageName>.d.ts" |
| 155 | + * DEFAULT VALUE: "dist/<unscopedPackageName>.d.ts" |
156 | 156 | */ |
157 | | - // "untrimmedFilePath": "./dist/<unscopedPackageName>.d.ts", |
| 157 | + // "untrimmedFilePath": "dist/<unscopedPackageName>.d.ts", |
158 | 158 |
|
159 | 159 | /** |
160 | 160 | * Specifies the output path for a .d.ts rollup file to be generated with trimming for a "beta" release. |
|
166 | 166 | * |
167 | 167 | * DEFAULT VALUE: "" |
168 | 168 | */ |
169 | | - // "betaTrimmedFilePath": "./dist/<unscopedPackageName>-beta.d.ts", |
| 169 | + // "betaTrimmedFilePath": "dist/<unscopedPackageName>-beta.d.ts", |
170 | 170 |
|
171 | 171 |
|
172 | 172 | /** |
|
179 | 179 | * |
180 | 180 | * DEFAULT VALUE: "" |
181 | 181 | */ |
182 | | - // "publicTrimmedFilePath": "./dist/<unscopedPackageName>-public.d.ts", |
| 182 | + // "publicTrimmedFilePath": "dist/<unscopedPackageName>-public.d.ts", |
183 | 183 | }, |
184 | 184 |
|
185 | 185 | /** |
|
198 | 198 | * |
199 | 199 | * The default value is "<lookup>", which causes the path to be automatically inferred from the "tsdocMetadata", |
200 | 200 | * "typings" or "main" fields of the project's package.json. If none of these fields are set, the lookup |
201 | | - * falls back to "./tsdoc-metadata.json". |
| 201 | + * falls back to "tsdoc-metadata.json" in the package folder. |
202 | 202 | * |
203 | 203 | * DEFAULT VALUE: "<lookup>" |
204 | 204 | */ |
205 | | - // "tsdocMetadataFilePath": "./dist/tsdoc-metadata.json" |
| 205 | + // "tsdocMetadataFilePath": "dist/tsdoc-metadata.json" |
206 | 206 | }, |
207 | 207 |
|
208 | 208 | /** |
|
0 commit comments