@karmaniverous/smoz 0.2.10 → 0.2.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +28 -28
- package/README.md +16 -16
- package/dist/cli/index.cjs +262 -278
- package/dist/index.d.ts +1 -1
- package/package.json +36 -37
- package/templates/default/.vscode/extensions.json +8 -8
- package/templates/default/README.md +98 -96
- package/templates/default/app/config/app.config.ts +2 -0
- package/templates/default/app/generated/openapi.json +8 -8
- package/templates/default/eslint.config.ts +0 -1
- package/templates/default/gitignore +42 -42
- package/templates/default/package.json +6 -7
- package/templates/default/tsconfig.base.json +21 -21
- package/templates/default/tsconfig.downstream.json +13 -13
- package/templates/default/tsconfig.eslint.json +2 -2
- package/templates/default/tsconfig.json +25 -25
- package/templates/default/tsdoc.json +46 -46
- package/templates/default/typedoc.json +14 -14
|
@@ -1,46 +1,46 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "https://developer.microsoft.com/json-schemas/tsdoc/v0/tsdoc.schema.json",
|
|
3
|
-
"noStandardTags": false,
|
|
4
|
-
"tagDefinitions": [
|
|
5
|
-
{ "tagName": "@author", "syntaxKind": "block" },
|
|
6
|
-
{ "tagName": "@module", "syntaxKind": "block" },
|
|
7
|
-
{ "tagName": "@type", "syntaxKind": "block" },
|
|
8
|
-
{ "tagName": "@typedef", "syntaxKind": "block" },
|
|
9
|
-
{ "tagName": "@callback", "syntaxKind": "block" },
|
|
10
|
-
{ "tagName": "@prop", "syntaxKind": "block", "allowMultiple": true },
|
|
11
|
-
{ "tagName": "@property", "syntaxKind": "block", "allowMultiple": true },
|
|
12
|
-
{ "tagName": "@group", "syntaxKind": "block", "allowMultiple": true },
|
|
13
|
-
{ "tagName": "@groupDescription", "syntaxKind": "block", "allowMultiple": true },
|
|
14
|
-
{ "tagName": "@category", "syntaxKind": "block", "allowMultiple": true },
|
|
15
|
-
{ "tagName": "@categoryDescription", "syntaxKind": "block", "allowMultiple": true },
|
|
16
|
-
{ "tagName": "@hidden", "syntaxKind": "modifier" },
|
|
17
|
-
{ "tagName": "@ignore", "syntaxKind": "modifier" },
|
|
18
|
-
{ "tagName": "@class", "syntaxKind": "modifier" },
|
|
19
|
-
{ "tagName": "@document", "syntaxKind": "block" },
|
|
20
|
-
{ "tagName": "@default", "syntaxKind": "block" },
|
|
21
|
-
{ "tagName": "@extends", "syntaxKind": "block" },
|
|
22
|
-
{ "tagName": "@augments", "syntaxKind": "block" },
|
|
23
|
-
{ "tagName": "@return", "syntaxKind": "block" },
|
|
24
|
-
{ "tagName": "@yields", "syntaxKind": "block" },
|
|
25
|
-
{ "tagName": "@enum", "syntaxKind": "modifier" },
|
|
26
|
-
{ "tagName": "@event", "syntaxKind": "modifier" },
|
|
27
|
-
{ "tagName": "@template", "syntaxKind": "block", "allowMultiple": true },
|
|
28
|
-
{ "tagName": "@linkcode", "syntaxKind": "inline", "allowMultiple": true },
|
|
29
|
-
{ "tagName": "@linkplain", "syntaxKind": "inline", "allowMultiple": true },
|
|
30
|
-
{ "tagName": "@private", "syntaxKind": "modifier" },
|
|
31
|
-
{ "tagName": "@protected", "syntaxKind": "modifier" },
|
|
32
|
-
{ "tagName": "@satisfies", "syntaxKind": "block" },
|
|
33
|
-
{ "tagName": "@since", "syntaxKind": "block" },
|
|
34
|
-
{ "tagName": "@license", "syntaxKind": "block" },
|
|
35
|
-
{ "tagName": "@import", "syntaxKind": "block" },
|
|
36
|
-
{ "tagName": "@overload", "syntaxKind": "modifier" },
|
|
37
|
-
{ "tagName": "@namespace", "syntaxKind": "modifier" },
|
|
38
|
-
{ "tagName": "@interface", "syntaxKind": "modifier" },
|
|
39
|
-
{ "tagName": "@showCategories", "syntaxKind": "modifier" },
|
|
40
|
-
{ "tagName": "@hideCategories", "syntaxKind": "modifier" },
|
|
41
|
-
{ "tagName": "@showGroups", "syntaxKind": "modifier" },
|
|
42
|
-
{ "tagName": "@hideGroups", "syntaxKind": "modifier" },
|
|
43
|
-
{ "tagName": "@hideconstructor", "syntaxKind": "modifier" },
|
|
44
|
-
{ "tagName": "@jsx", "syntaxKind": "block" }
|
|
45
|
-
]
|
|
46
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://developer.microsoft.com/json-schemas/tsdoc/v0/tsdoc.schema.json",
|
|
3
|
+
"noStandardTags": false,
|
|
4
|
+
"tagDefinitions": [
|
|
5
|
+
{ "tagName": "@author", "syntaxKind": "block" },
|
|
6
|
+
{ "tagName": "@module", "syntaxKind": "block" },
|
|
7
|
+
{ "tagName": "@type", "syntaxKind": "block" },
|
|
8
|
+
{ "tagName": "@typedef", "syntaxKind": "block" },
|
|
9
|
+
{ "tagName": "@callback", "syntaxKind": "block" },
|
|
10
|
+
{ "tagName": "@prop", "syntaxKind": "block", "allowMultiple": true },
|
|
11
|
+
{ "tagName": "@property", "syntaxKind": "block", "allowMultiple": true },
|
|
12
|
+
{ "tagName": "@group", "syntaxKind": "block", "allowMultiple": true },
|
|
13
|
+
{ "tagName": "@groupDescription", "syntaxKind": "block", "allowMultiple": true },
|
|
14
|
+
{ "tagName": "@category", "syntaxKind": "block", "allowMultiple": true },
|
|
15
|
+
{ "tagName": "@categoryDescription", "syntaxKind": "block", "allowMultiple": true },
|
|
16
|
+
{ "tagName": "@hidden", "syntaxKind": "modifier" },
|
|
17
|
+
{ "tagName": "@ignore", "syntaxKind": "modifier" },
|
|
18
|
+
{ "tagName": "@class", "syntaxKind": "modifier" },
|
|
19
|
+
{ "tagName": "@document", "syntaxKind": "block" },
|
|
20
|
+
{ "tagName": "@default", "syntaxKind": "block" },
|
|
21
|
+
{ "tagName": "@extends", "syntaxKind": "block" },
|
|
22
|
+
{ "tagName": "@augments", "syntaxKind": "block" },
|
|
23
|
+
{ "tagName": "@return", "syntaxKind": "block" },
|
|
24
|
+
{ "tagName": "@yields", "syntaxKind": "block" },
|
|
25
|
+
{ "tagName": "@enum", "syntaxKind": "modifier" },
|
|
26
|
+
{ "tagName": "@event", "syntaxKind": "modifier" },
|
|
27
|
+
{ "tagName": "@template", "syntaxKind": "block", "allowMultiple": true },
|
|
28
|
+
{ "tagName": "@linkcode", "syntaxKind": "inline", "allowMultiple": true },
|
|
29
|
+
{ "tagName": "@linkplain", "syntaxKind": "inline", "allowMultiple": true },
|
|
30
|
+
{ "tagName": "@private", "syntaxKind": "modifier" },
|
|
31
|
+
{ "tagName": "@protected", "syntaxKind": "modifier" },
|
|
32
|
+
{ "tagName": "@satisfies", "syntaxKind": "block" },
|
|
33
|
+
{ "tagName": "@since", "syntaxKind": "block" },
|
|
34
|
+
{ "tagName": "@license", "syntaxKind": "block" },
|
|
35
|
+
{ "tagName": "@import", "syntaxKind": "block" },
|
|
36
|
+
{ "tagName": "@overload", "syntaxKind": "modifier" },
|
|
37
|
+
{ "tagName": "@namespace", "syntaxKind": "modifier" },
|
|
38
|
+
{ "tagName": "@interface", "syntaxKind": "modifier" },
|
|
39
|
+
{ "tagName": "@showCategories", "syntaxKind": "modifier" },
|
|
40
|
+
{ "tagName": "@hideCategories", "syntaxKind": "modifier" },
|
|
41
|
+
{ "tagName": "@showGroups", "syntaxKind": "modifier" },
|
|
42
|
+
{ "tagName": "@hideGroups", "syntaxKind": "modifier" },
|
|
43
|
+
{ "tagName": "@hideconstructor", "syntaxKind": "modifier" },
|
|
44
|
+
{ "tagName": "@jsx", "syntaxKind": "block" }
|
|
45
|
+
]
|
|
46
|
+
}
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
{
|
|
2
|
-
"entryPoints": ["./app"],
|
|
3
|
-
"entryPointStrategy": "expand",
|
|
4
|
-
"exclude": ["**/*.test.ts", "**/*.d.ts", "**/generated/**"],
|
|
5
|
-
"excludeInternal": false,
|
|
6
|
-
"out": "./docs/",
|
|
7
|
-
"searchInComments": true,
|
|
8
|
-
"searchInDocuments": true,
|
|
9
|
-
"highlightLanguages": ["bash", "console", "json", "typescript"],
|
|
10
|
-
"navigation": {
|
|
11
|
-
"excludeReferences": true
|
|
12
|
-
},
|
|
13
|
-
"projectDocuments": []
|
|
14
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"entryPoints": ["./app"],
|
|
3
|
+
"entryPointStrategy": "expand",
|
|
4
|
+
"exclude": ["**/*.test.ts", "**/*.d.ts", "**/generated/**"],
|
|
5
|
+
"excludeInternal": false,
|
|
6
|
+
"out": "./docs/",
|
|
7
|
+
"searchInComments": true,
|
|
8
|
+
"searchInDocuments": true,
|
|
9
|
+
"highlightLanguages": ["bash", "console", "json", "typescript"],
|
|
10
|
+
"navigation": {
|
|
11
|
+
"excludeReferences": true
|
|
12
|
+
},
|
|
13
|
+
"projectDocuments": []
|
|
14
|
+
}
|