Skip to content

Commit

Permalink
fix(lib imports): import the standard libraries the standard way
Browse files Browse the repository at this point in the history
  • Loading branch information
RobertFischer committed Dec 10, 2020
1 parent 344ca6c commit b4221da
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/fun-promise.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@
* @format
*/

/// <reference lib="es5" />
/// <reference lib="es2015.iterable" />
/// <reference lib="es2015.promise" />
/// <reference lib="es2015.symbol.wellknown" />
/// <reference lib="es2018.asyncgenerator" />
/// <reference lib="es2018.asynciterable" />
/// <reference lib="es2018.promise" />
/// <reference lib="es2020.promise" />
/// <reference lib="esnext.promise" />

import {
Promisable,
PromisableIterable,
Expand Down

0 comments on commit b4221da

Please sign in to comment.