https://github.com/timluq/xsd-ts
https://github.com/timluq/xsd-ts
Last synced: 27 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/timluq/xsd-ts
- Owner: TimLuq
- License: lgpl-3.0
- Created: 2018-03-17T18:10:35.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-03-17T21:00:46.000Z (about 8 years ago)
- Last Synced: 2025-01-12T06:25:58.899Z (over 1 year ago)
- Language: TypeScript
- Size: 42 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# xsd-ts
Written in Typescript and comes transpiled to both UMD and ES6 modules with dynamic imports.
For a slight performace bump when knowing which loader to use and not using a bundler for your main project it is possible to run `npm run rollup`. Running this command generates the following directories:
- `dist/es`: optimized ES modules for use in contexts supporting standard import/export, such as modern browsers.
- `dist/amd`: when using AMD as the module loader this should minimize the number of roundtrips.
- `dist/system`: when using SystemJS as the module loader this should minimize the number of roundtrips.
- `dist/cjs`: when using CommonJS as the module loader, such as in node.js, this should minimize the number of files read.