-
-
Notifications
You must be signed in to change notification settings - Fork 201
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from oslabs-beta/Emin
Emin
- Loading branch information
Showing
7 changed files
with
29 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,18 @@ | ||
// core-js is a library that includes polyfill for many types of native js | ||
// features such as promise, symbols, collections, typed arrays, etc. | ||
// Used in reactime to make sure our newest code | ||
// can run on outdated platforms and with outdated applications | ||
declare module 'core-js'; | ||
// Regenerator runtime provides runtime support for compiled/transpiled async functions. | ||
// Like babel that compiles modern js into older js, | ||
// async functions are also compiled to run on engines that don't support async. | ||
// After babel does the syntax transformation or transpiles the async functions, | ||
// the resulting code uses regen runtime to run | ||
// https://stackoverflow.com/questions/65378542/what-is-regenerator-runtime-npm-package-used-for | ||
declare module 'regenerator-runtime/runtime'; | ||
// Acorn is a jsx parser that was experimental to be faster than than the react.js jsx parser, | ||
// however is not maintained at this time, last update was more than one year ago 10-5-21 | ||
declare module 'acorn-jsx'; | ||
// Traspiler to traspile code to JSX AST but to use with regular es5 compliant js, | ||
// still needs babel and buble trasnpilers which use acorn-jsx under the hood | ||
declare module 'acorn'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters