Optional arrowThe environment supports arrow functions ('() => { ... }').
Optional bigThe environment supports BigInt as literal (123n).
Optional constThe environment supports const and let for variable declarations.
Optional destructuringThe environment supports destructuring ('{ a, b } = obj').
Optional dynamicThe environment supports an async import() function to import EcmaScript modules.
Optional forThe environment supports 'for of' iteration ('for (const x of array) { ... }').
Optional moduleThe environment supports EcmaScript Module syntax to import EcmaScript modules (import ... from '...').
Optional optionalThe environment supports optional chaining ('obj?.a' or 'obj?.()').
Optional templateThe environment supports template literals.
Generated using TypeDoc
The abilities of the environment where the webpack generated code should run.