Allow arbitrary attributes in FilterOptions
parent
8c62ca981e
commit
b24c2996be
|
@ -28,4 +28,4 @@ export type FilterOption = {
|
||||||
name: string;
|
name: string;
|
||||||
orderId?: number;
|
orderId?: number;
|
||||||
hint?: string;
|
hint?: string;
|
||||||
};
|
} & Record<string, any>;
|
||||||
|
|
|
@ -76,6 +76,7 @@ export async function compile(
|
||||||
// TODO do this differently
|
// TODO do this differently
|
||||||
importMapURL: options.importMap ||
|
importMapURL: options.importMap ||
|
||||||
new URL("./../import_map.json", import.meta.url),
|
new URL("./../import_map.json", import.meta.url),
|
||||||
|
loader: "native",
|
||||||
}),
|
}),
|
||||||
],
|
],
|
||||||
absWorkingDir: path.resolve(path.dirname(inFile)),
|
absWorkingDir: path.resolve(path.dirname(inFile)),
|
||||||
|
|
Loading…
Reference in New Issue