From 793977d273963d1ec6e401fa2a6b1c4e8ee5272f Mon Sep 17 00:00:00 2001 From: evilebottnawi Date: Fri, 13 Mar 2020 12:03:17 +0300 Subject: [PATCH] chore: setup cspell --- declarations/WebpackOptions.d.ts | 16 ++++++++-------- .../optimize/AggressiveSplittingPlugin.d.ts | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/declarations/WebpackOptions.d.ts b/declarations/WebpackOptions.d.ts index 6828374e9..51aa350b5 100644 --- a/declarations/WebpackOptions.d.ts +++ b/declarations/WebpackOptions.d.ts @@ -439,7 +439,7 @@ export type HotUpdateFunction = string; */ export type HotUpdateMainFilename = string; /** - * Wrap javascript code into IIFEs to avoid leaking into global scope. + * Wrap javascript code into IIFE's to avoid leaking into global scope. */ export type Iife = boolean; /** @@ -622,7 +622,7 @@ export interface WebpackOptions { */ entry?: Entry; /** - * Enables/Disables experiments (experiemental features with relax SemVer compatibility). + * Enables/Disables experiments (experimental features with relax SemVer compatibility). */ experiments?: Experiments; /** @@ -893,7 +893,7 @@ export interface LibraryCustomUmdObject { root?: string | string[]; } /** - * Enables/Disables experiments (experiemental features with relax SemVer compatibility). + * Enables/Disables experiments (experimental features with relax SemVer compatibility). */ export interface Experiments { /** @@ -917,7 +917,7 @@ export interface Experiments { */ mjs?: boolean; /** - * Allow outputing javascript files as module source type. + * Allow output javascript files as module source type. */ outputModule?: boolean; /** @@ -1618,7 +1618,7 @@ export interface Output { */ hotUpdateMainFilename?: HotUpdateMainFilename; /** - * Wrap javascript code into IIFEs to avoid leaking into global scope. + * Wrap javascript code into IIFE's to avoid leaking into global scope. */ iife?: Iife; /** @@ -1695,7 +1695,7 @@ export interface PerformanceOptions { */ hints?: false | "warning" | "error"; /** - * Filesize limit (in bytes) when exceeded, that webpack will provide performance hints. + * File size limit (in bytes) when exceeded, that webpack will provide performance hints. */ maxAssetSize?: number; /** @@ -2075,7 +2075,7 @@ export interface OutputNormalized { */ hotUpdateMainFilename?: HotUpdateMainFilename; /** - * Wrap javascript code into IIFEs to avoid leaking into global scope. + * Wrap javascript code into IIFE's to avoid leaking into global scope. */ iife?: Iife; /** @@ -2164,7 +2164,7 @@ export interface WebpackOptionsNormalized { */ entry: EntryNormalized; /** - * Enables/Disables experiments (experiemental features with relax SemVer compatibility). + * Enables/Disables experiments (experimental features with relax SemVer compatibility). */ experiments: Experiments; /** diff --git a/declarations/plugins/optimize/AggressiveSplittingPlugin.d.ts b/declarations/plugins/optimize/AggressiveSplittingPlugin.d.ts index cbce0cf06..e29447801 100644 --- a/declarations/plugins/optimize/AggressiveSplittingPlugin.d.ts +++ b/declarations/plugins/optimize/AggressiveSplittingPlugin.d.ts @@ -14,7 +14,7 @@ export interface AggressiveSplittingPluginOptions { */ entryChunkMultiplicator?: number; /** - * Byte, maxsize of per file (Default: 50kiB). + * Byte, max size of per file (Default: 50kiB). */ maxSize?: number; /**