@atscript/core 0.1.23 → 0.1.25
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/dist/index.cjs +5 -1
- package/dist/index.mjs +5 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -3042,7 +3042,11 @@ const zeroRange = {
|
|
|
3042
3042
|
//#endregion
|
|
3043
3043
|
//#region packages/core/src/defaults/emit-annotations.ts
|
|
3044
3044
|
const emitAnnotations = { jsonSchema: new AnnotationSpec({
|
|
3045
|
-
nodeType: [
|
|
3045
|
+
nodeType: [
|
|
3046
|
+
"interface",
|
|
3047
|
+
"type",
|
|
3048
|
+
"annotate"
|
|
3049
|
+
],
|
|
3046
3050
|
description: "Pre-compute and embed JSON Schema at build time for this interface, regardless of the global jsonSchema plugin option."
|
|
3047
3051
|
}) };
|
|
3048
3052
|
|
package/dist/index.mjs
CHANGED
|
@@ -3018,7 +3018,11 @@ const zeroRange = {
|
|
|
3018
3018
|
//#endregion
|
|
3019
3019
|
//#region packages/core/src/defaults/emit-annotations.ts
|
|
3020
3020
|
const emitAnnotations = { jsonSchema: new AnnotationSpec({
|
|
3021
|
-
nodeType: [
|
|
3021
|
+
nodeType: [
|
|
3022
|
+
"interface",
|
|
3023
|
+
"type",
|
|
3024
|
+
"annotate"
|
|
3025
|
+
],
|
|
3022
3026
|
description: "Pre-compute and embed JSON Schema at build time for this interface, regardless of the global jsonSchema plugin option."
|
|
3023
3027
|
}) };
|
|
3024
3028
|
|