fix: needs to be an es export
This commit is contained in:
parent
956785f198
commit
98df56147e
|
@ -3,9 +3,9 @@ import info from "./info.js";
|
||||||
import list from "./list.js";
|
import list from "./list.js";
|
||||||
import type from "./type.js";
|
import type from "./type.js";
|
||||||
|
|
||||||
module.exports = {
|
export default {
|
||||||
'desc': desc,
|
'desc': desc,
|
||||||
'info': info,
|
'info': info,
|
||||||
'list': list,
|
'list': list,
|
||||||
'type': type,
|
'type': type,
|
||||||
}
|
};
|
||||||
|
|
Loading…
Reference in New Issue