@graphql-codegen/plugin-helpers 2.5.0 → 2.6.0-alpha-1761e9d45.0
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/package.json +1 -1
- package/typings/types.d.ts +4 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@graphql-codegen/plugin-helpers",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.6.0-alpha-1761e9d45.0",
|
|
4
4
|
"description": "GraphQL Code Generator common utils and types",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
|
package/typings/types.d.ts
CHANGED
|
@@ -405,6 +405,10 @@ export declare namespace Types {
|
|
|
405
405
|
* @description A flag to suppress non-zero exit code when there are no documents to generate.
|
|
406
406
|
*/
|
|
407
407
|
ignoreNoDocuments?: boolean;
|
|
408
|
+
/**
|
|
409
|
+
* @description A flag to disable adding `.js` extension to the output file. Default: `true`.
|
|
410
|
+
*/
|
|
411
|
+
emitLegacyCommonJSImports?: boolean;
|
|
408
412
|
/**
|
|
409
413
|
* @description A flag to suppress printing errors when they occur.
|
|
410
414
|
*/
|