Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Types - add missing esm as possible ModuleFormat (#2327)
  • Loading branch information
Andarist authored and lukastaegert committed Jul 12, 2018
1 parent 2f58681 commit a449ab7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rollup/types.d.ts
Expand Up @@ -232,7 +232,7 @@ export interface InputOptions {
resolveExternal?: any;
}

export type ModuleFormat = 'amd' | 'cjs' | 'system' | 'es' | 'es6' | 'iife' | 'umd';
export type ModuleFormat = 'amd' | 'cjs' | 'system' | 'es' | 'esm' | 'es6' | 'iife' | 'umd';

export type OptionsPaths = Record<string, string> | ((id: string) => string);

Expand Down

0 comments on commit a449ab7

Please sign in to comment.