@isograph/compiler 0.0.0-main-bfd98f0e → 0.0.0-main-f47d436f

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.
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -85,18 +85,30 @@
85
85
  "type": "object",
86
86
  "properties": {
87
87
  "include_file_extensions_in_import_statements": {
88
+ "description": "Should the compiler include file extensions in import statements in generated files? e.g. should it import ./param_type or ./param_type.ts?",
88
89
  "default": false,
89
90
  "type": "boolean"
90
91
  },
91
92
  "module": {
92
- "$ref": "#/definitions/ConfigFileJavascriptModule"
93
+ "description": "The babel plugin transforms isograph literals containing entrypoints into imports or requires of the generated entrypoint.ts file. Should it generate require calls or esmodule imports?",
94
+ "allOf": [
95
+ {
96
+ "$ref": "#/definitions/ConfigFileJavascriptModule"
97
+ }
98
+ ]
93
99
  },
94
100
  "no_babel_transform": {
101
+ "description": "Set this to true if you don't have the babel transform enabled.",
95
102
  "default": false,
96
103
  "type": "boolean"
97
104
  },
98
105
  "on_invalid_id_type": {
99
- "$ref": "#/definitions/ConfigFileOptionalValidationLevel"
106
+ "description": "What the compiler should do if it encounters an id field whose type is not ID! or ID.",
107
+ "allOf": [
108
+ {
109
+ "$ref": "#/definitions/ConfigFileOptionalValidationLevel"
110
+ }
111
+ ]
100
112
  }
101
113
  },
102
114
  "additionalProperties": false
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@isograph/compiler",
3
- "version": "0.0.0-main-bfd98f0e",
3
+ "version": "0.0.0-main-f47d436f",
4
4
  "description": "Installs the `yarn iso` command, which runs the Isograph compiler.",
5
5
  "homepage": "https://isograph.dev",
6
6
  "main": "index.js",