This project is a template for creating TypeScript packages. It includes features for linting, type checking and documentation using JSDoc annotations, and bundling the source as a package to be published to the NPM registry.
This template is configured with ESLint and Prettier. It uses the Airbnb base
config and extends it
with tiny overrides which are in .eslintrc.js
, and can
be easily extended or removed if needed. You might also want to change other
settings in .eslintrc.js
to fit your needs.
This template is meant to be used to create packages with typescript. When bundled, separate type declaration files are emitted to provide nice autocomplete for users of the package. As a result, you can use all JSDOC tags supported by Typescript, and even typescript specific syntax like function types directly inside JSDoc comments and it'll work nicely.
You can also directly include documentations for any symbol in the package using JSDoc. The comments are not removed from the builds.
The environment is assummed to be Node by default, meaning that some changes have to be made if the package is meant to be used just in the browser, or both the browser and node.
The first setting that needs to be altered is the env
setting in
.eslintrc.js
. For a browser-only package:
{
"env": {
"browser": true
}
}
For both node and the browser:
{
"env": {
"shared-node-browser": true
}
}
The follow changes also have to be made if the package will run in the browser (whether browser-only, or browser/node) to make sure you're only using the core JavaScript APIs:
- Remove the
@types/node
dependency frompackage.json
, before runningnpm install
. - Change
compilerOptions.types
intsconfig.json
into an empty array, or remove it completely.
Additionally, if the package will only be running in the browser, you can add
"DOM"
to the compilerOptions.lib
array in tsconfig.json
, to prevent
typescript from throwing an error when you use the DOM APIs, and also for
autocomplete features.
This template includes three TSconfig files. There's a base tsconfig.json
file
which is extended by two other TSconfig files, namely the tsconfig.cjs.json
and tsconfig.esm.json
files. These two files are passed to the Typescript
compiler at build time to create two different builds of the package to support
import
and require
statements on the package's exports. The builds created
are put in the dist
folder at the project's root; the commonjs build in
dist/cjs
, and the Ecmascript module build in dist/esm
.
There are a couple of script included in the package.json
:
-
build
: builds the package, causing typescript to emit files in thedist/cjs
anddist/esm
directories. This also runs thefixup
script. -
fixup
: Runs the fixup.sh shell script. This creates two separatepackage.json
files for the two builds (dist/cjs
anddist/esm
) configuring their types ("commonjs"
and"module"
respectively). You can learn more about this approach here. -
format
: Runs prettier on the whole project. -
lint
: Runs eslint on the whole project. -
type-check
: Run Typescript on the project without emitting files. -
prepare
: Installs precommit hooks to automatically lint changed files on each commit. -
prepublishOnly
: causes the package to be built automatically (populate thedist
directory) when attempting to publish to the NPM registry.
Another feature included in this template is automatic linting of changed files
on every commit using husky
and lint-staged
.
To use this template, do the following:
-
Clone the repository. Replace
<YOUR_PROJECT_NAME>
in the following command with your projct name or./
if you're in your project folder.git clone https://github.com/abdulramon-jemil/ts-package-template.git <YOUR_PROJECT_NAME>
-
Remove the
LICENSE
file if needed (or modify it as needed):rm LICENSE
-
Restart the git history:
rm -rf .git git init git add . git commit -m "Initial commit"
-
Modify
package.json
andpackage-lock.json
to show your project's details:{ "name": "<YOUR_PROJECT_NAME>", "description": "<YOUR_PROJECT_DESCRIPTION>", "version": "<YOUR_PROJECT_VERSION>" }
-
Modify the project's README as needed or remove it:
rm README.md
-
Follow the instructions in Environment Settings above and make changes based on your needs.
-
Install the packages:
npm install
-
Run the prepare script:
npm run prepare
After these, you can start adding your own code in the src
directory.
Please update packages as needed if they're outdated at the time of using the template. I might not have time to update them.
If you would like to contribute to this template, please create an issue about it first, and let's talk about it. Thanks in advance.