3.0.0 • Published 6 years ago

typescript-project-template v3.0.0

Weekly downloads
2
License
MIT
Repository
-
Last release
6 years ago

typescript-project-template

Install with npm install --global tpt.

Run tpt init <project-name> in a blank directory where you would like to initialize a typescript project named <project-name>.

Builds to commonjs for node; es6 modules for tools like rollup.js, webpack, and for the future; to umd and an iife, both for the browser; and to commonjs for the inline .test.ts files.

Here are the corresponding package.json "starting point" properties:

  "main": "./dist/cjs/index.js",        // commonjs, for node or any other cjs environmen

  "module": "./dist/esm/index.js",      // es6 modules, for node with the `--experimental-modules` 
                                        // flag (TODO: change file extensions to .mjs); or for
                                        // rollup.js/webpack consumption.

  "source": "./src/index.ts",           // preserve the original typescript source for generated 
                                        // source maps, debugging, and reference.

  "browser": "./dist/browser/index.js", // UMD for the browser via rollup.js

  "bundle": "./dist/browser/bundle.js", // made this one up; contains everything (including imported modules)
                                        // bundled up into one file. One can directly include with 
                                        // <script src=".../bundle.js"></script>.

So, you can require or import, or in the bundle case directly reference by global definition. Further, all type information is preserved in the published module, so more typescript modules can consume it as native ts.

Please improve via PRs!

project goals

  • minimal
  • comprehensive
  • optional
  • extensible
3.0.0

6 years ago

1.10.10

6 years ago

1.10.9

6 years ago

1.10.8

6 years ago

1.10.7

6 years ago

2.0.0

6 years ago

1.10.6

6 years ago

1.10.5

6 years ago

1.10.4

6 years ago

1.10.3

6 years ago

1.10.2

6 years ago

1.10.1

6 years ago

1.10.0

6 years ago

1.9.1

6 years ago

1.9.0

6 years ago

1.8.0

6 years ago

1.7.3

6 years ago

1.7.2

6 years ago

1.7.1

6 years ago

1.7.0

6 years ago

1.6.1

6 years ago

1.6.0

6 years ago

1.5.4

6 years ago

1.5.3

6 years ago

1.5.2

6 years ago

1.5.1

6 years ago

1.5.0

6 years ago

1.4.0

6 years ago

1.3.1

6 years ago

1.3.0

6 years ago

1.2.16

6 years ago

1.2.15

6 years ago

1.2.14

6 years ago

1.2.13

6 years ago

1.2.12

6 years ago

1.2.11

6 years ago

1.2.10

6 years ago

1.2.9

6 years ago

1.2.8

6 years ago

1.2.7

6 years ago

1.2.6

6 years ago

1.2.5

6 years ago

1.2.4

6 years ago

1.2.3

6 years ago

1.2.2

6 years ago

1.2.1

6 years ago

1.2.0

6 years ago

1.1.0

6 years ago

1.0.0

6 years ago