diff --git a/src/compiler/preprocess/index.ts b/src/compiler/preprocess/index.ts index 12cc8b00cd..27c1c471c1 100644 --- a/src/compiler/preprocess/index.ts +++ b/src/compiler/preprocess/index.ts @@ -5,7 +5,7 @@ import { StringWithSourcemap, sourcemap_add_offset, combine_sourcemaps } from '. export interface Processed { code: string; - map?: string | object; // we be opaque with the type here to avoid dependency on the remapping module for our public types. + map?: string | object; // we are opaque with the type here to avoid dependency on the remapping module for our public types. dependencies?: string[]; }