-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This PR changes all internal code (scripts/, test/, util/) to ESM. The built package for NPM now contains an ESM and CJS entrypoint.
- Loading branch information
1 parent
d983331
commit e5aa6ad
Showing
56 changed files
with
2,074 additions
and
369 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,6 @@ | ||
/* Any copyright is dedicated to the Public Domain. | ||
* http://creativecommons.org/publicdomain/zero/1.0/ */ | ||
/// <reference path="./types.d.ts"/> | ||
|
||
import { CompatData } from './types'; | ||
|
||
// This is necessary to have intellisense in projects which | ||
// import data from this package. | ||
declare const compatData: CompatData; | ||
export = compatData; | ||
export default CompatData; |
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
Oops, something went wrong.