@cloudcannon/configuration-types 0.0.2 → 0.0.3
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/src/index.d.ts +3 -0
package/package.json
CHANGED
package/src/index.d.ts
CHANGED
|
@@ -932,16 +932,19 @@ export interface HugoCollectionConfig extends CollectionConfig {
|
|
|
932
932
|
}
|
|
933
933
|
|
|
934
934
|
export interface HugoConfiguration extends Omit<DefaultConfiguration, 'output' | 'data_config'> {
|
|
935
|
+
collections_config_override?: boolean;
|
|
935
936
|
collections_config?: Record<string, HugoCollectionConfig>;
|
|
936
937
|
data_config?: Record<string, boolean>;
|
|
937
938
|
}
|
|
938
939
|
|
|
939
940
|
export interface JekyllConfiguration extends Omit<DefaultConfiguration, 'output' | 'data_config'> {
|
|
941
|
+
collections_config_override?: boolean;
|
|
940
942
|
data_config?: Record<string, boolean>;
|
|
941
943
|
}
|
|
942
944
|
|
|
943
945
|
export interface EleventyConfiguration
|
|
944
946
|
extends Omit<DefaultConfiguration, 'output' | 'data_config'> {
|
|
947
|
+
collections_config_override?: boolean;
|
|
945
948
|
data_config?: Record<string, boolean>;
|
|
946
949
|
}
|
|
947
950
|
|