blob: 74307e5320637dec3ac59cacb2329a831e34fafb [file] [log] [blame]
// To be able to import json5 files using Webpack:
declare module '*.json5' {
const content: any;
export default content;
}
declare module '*.json' {
const content: any;
export default content;
}