@dxos/app-framework - v0.10.0
    Preparing search index...

    Variable ConfigConst

    Config: Schema.Struct<
        {
            plugin: Schema.Struct<
                {
                    author: Schema.optional<typeof Schema.String>;
                    dependsOn: Schema.optional<Schema.Array$<typeof Schema.String>>;
                    description: Schema.optional<typeof Schema.String>;
                    homePage: Schema.optional<typeof Schema.String>;
                    icon: Schema.optional<
                        Schema.Struct<
                            {
                                hue: Schema.optional<typeof Schema.String>;
                                key: Schema.filter<typeof Schema.String>;
                            },
                        >,
                    >;
                    key: Schema.filter<typeof Schema.String>;
                    name: Schema.filter<typeof Schema.String>;
                    screenshots: Schema.optional<
                        Schema.Array$<
                            Schema.Struct<
                                {
                                    dark: Schema.optional<typeof Schema.String>;
                                    light: Schema.optional<typeof Schema.String>;
                                },
                            >,
                        >,
                    >;
                    source: Schema.optional<typeof Schema.String>;
                    spec: Schema.optional<typeof Schema.String>;
                    tags: Schema.optional<Schema.Array$<typeof Schema.String>>;
                },
            >;
            publish: Schema.optional<
                Schema.Struct<
                    {
                        assetBaseUrl: Schema.optional<typeof Schema.String>;
                        buildCommand: Schema.optional<typeof Schema.String>;
                        outputDirectory: Schema.optional<typeof Schema.String>;
                    },
                >,
            >;
        },
    >

    The dx.config.ts schema: the TypeScript-authored replacement for the plugin section of dx.yml. v1 carries one plugin's self-declared meta plus optional publish orchestration; it will grow to absorb the rest of the (currently proto-based) config over time and eventually become the canonical config.