-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This library is not meant for writing end user applications or even for being used directly when writing tests. It is not meant to be loaded directly by browsers. Consumers of this package are assumed to use their own bundlers, should they need to bundle code for use in browsers or workers. Therefore, it is safe to distribute the package as source files and not bundle them up. This allows us to remove the bundler and its transitive dependencies, which reduces the maintenance burden of managing the library.
- Loading branch information
Showing
3 changed files
with
11 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,6 @@ node_modules | |
.idea | ||
site/ | ||
coverage/ | ||
dist/ | ||
.nyc_output/ | ||
out | ||
types/ |
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,10 +1,14 @@ | ||
{ | ||
"include": [ | ||
"dist/*.js" | ||
"lib/*.js" | ||
], | ||
"exclude" : [ | ||
"lib/*.test.js" | ||
], | ||
"compilerOptions": { | ||
"declaration": true, | ||
"emitDeclarationOnly": true, | ||
"allowJs": true | ||
"allowJs": true, | ||
"outDir": "types" | ||
} | ||
} |