generated from fp-tx/template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsdoc.json
41 lines (37 loc) · 1003 Bytes
/
tsdoc.json
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
36
37
38
39
40
41
{
"$schema": "https://developer.microsoft.com/json-schemas/tsdoc/v0/tsdoc.schema.json",
// Include the definitions that are required for API Extractor
"extends": ["@microsoft/api-extractor/extends/tsdoc-base.json"],
// noStandardTags: false,
"tagDefinitions": [
// Define a custom tag and specify how it should be parsed
{
"tagName": "@since",
"syntaxKind": "inline",
"allowMultiple": false
},
{
"tagName": "@meta",
"syntaxKind": "block",
"allowMultiple": false
},
{
"tagName": "@category",
"syntaxKind": "inline",
"allowMultiple": false
},
{
"tagName": "@license",
"syntaxKind": "inline",
"allowMultiple": true
}
],
"supportForTags": {
// Indicate that the custom tag is supported by your tooling. (Without this, warnings may
// be reported saying that the tag is unsupported.)
"@since": true,
"@meta": true,
"@category": true,
"@license": true
}
}