diff --git a/src/renderer/mikrormShim.ts b/src/renderer/mikrormShim.ts deleted file mode 100644 index 88985ab..0000000 --- a/src/renderer/mikrormShim.ts +++ /dev/null @@ -1,17 +0,0 @@ -/** - * Pass through decorators - */ -const passthrough = () => () => {}; - -export const Entity = passthrough; -export const PrimaryKey = passthrough; -export const OneToMany = passthrough; -export const ManyToOne = passthrough; -export const Property = passthrough; -export const Collection = passthrough; -export const QueryOrder = passthrough; - -export const MikroORM = { - init: () => - console.warn('MikroORM has been stubbed out as it does not work in browser.'), -};