graphql-config
Version:
The easiest way to configure your development environment with your GraphQL schema (supported by most tools, editors & IDEs)
15 lines (14 loc) • 1.16 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.LoadersRegistry = exports.GraphQLProjectConfig = exports.loadConfigSync = exports.loadConfig = exports.GraphQLConfig = void 0;
const tslib_1 = require("tslib");
var config_js_1 = require("./config.js");
Object.defineProperty(exports, "GraphQLConfig", { enumerable: true, get: function () { return config_js_1.GraphQLConfig; } });
Object.defineProperty(exports, "loadConfig", { enumerable: true, get: function () { return config_js_1.loadConfig; } });
Object.defineProperty(exports, "loadConfigSync", { enumerable: true, get: function () { return config_js_1.loadConfigSync; } });
var project_config_js_1 = require("./project-config.js");
Object.defineProperty(exports, "GraphQLProjectConfig", { enumerable: true, get: function () { return project_config_js_1.GraphQLProjectConfig; } });
tslib_1.__exportStar(require("./types.js"), exports);
tslib_1.__exportStar(require("./errors.js"), exports);
var loaders_js_1 = require("./loaders.js");
Object.defineProperty(exports, "LoadersRegistry", { enumerable: true, get: function () { return loaders_js_1.LoadersRegistry; } });
;