blob: 74307e5320637dec3ac59cacb2329a831e34fafb [file] [log] [blame]
Adrià Vilanova Martínez2b50e912022-06-01 00:05:40 +02001// To be able to import json5 files using Webpack:
2declare module '*.json5' {
3 const content: any;
4 export default content;
5}
6
7declare module '*.json' {
8 const content: any;
9 export default content;
10}