diff --git a/src/main/targets.ts b/src/main/targets.ts index 7b4a10f..26b0391 100644 --- a/src/main/targets.ts +++ b/src/main/targets.ts @@ -7,6 +7,7 @@ export type Flags = (typeof flags)[keyof typeof flags]; export const targets = { BROWSER: 'browser', NATIVE: 'native', + ALL: 'all', } as const; export type Targets = (typeof targets)[keyof typeof targets]; @@ -22,6 +23,9 @@ export const targetToFeatures: Record = { native: { requires: [], }, + all: { + requires: [], + }, } as const; export function getTargetFeatures(target: Targets): FeatureMap {