KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
tspack
★ 11
Open GitHub ↗
A module bundler for TypeScript
Download README (.md)
Explore Similar Repositories
py-clearnlp-converter
:
A simple Python wrapper for the ClearNLP constituents-to-dependencies converter
ember-time-field
:
Time field for ember with keyboard navigation
ARDroneCFS
:
Core Flight Software on the AR Drone
tr-projects-rest
:
twreporter middle-ware rest-api server
opendsp
:
HTTP Service implementation of a DSP in Node (v4.2.1)
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
tspack
?
Download (.md)
[](https://badge.fury.io/js/tspack) # Introduction tspack is a bundler for typescript modules. Packs many modules into a few bundled assets. Allows to split your codebase into multiple bundles, which can be loaded on demand. # Installation project: `npm install tspack` global: `npm install tspack -g` # Example tsconfig.json : ``` { "compilerOptions": { "outDir": "bin-debug", "target": "ES5", "declaration": true, "accessorOptimization": true, "emitReflection": true, "reorderFiles": true, "defines": { "DEBUG": false, "LANGUAGE": "en_US" } }, "modules": [ { "name": "core", "include": [ "src/**/*" ], "exclude": [ "**/web/*", "node_modules" ], "dependencies": [] }, { "name": "web", "declaration": false, // Override the default compiler options defined above. "include": [ "src/**/web/*" ], "exclude": [ "node_modules" ], "dependencies": [ "core" ] } ] } ```