Package Exports
- tsds-lib
- tsds-lib/assets/tsds-lib.js
- tsds-lib/dist/cjs/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (tsds-lib) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
ts-dev-stack
Development stack for TypeScript libraries
For an example, check out parser-multipart
Example 1: CLI
# build
$ tsds build
# run coverage tests (default on "test/**/*.test.*" only) using c8
$ tsds coverage
# deploy library using np
$ tsds deploy
# format library using prettier
$ tsds format
# run tests on current version of node and browser
$ tsds test
# run tests on current version of node
$ tsds test:node
# run tests on browser only
$ tsds test:browser