@pxlwidgets/tsconfig
v3.0.2
Published
The TS compiler base configuration for our Typescript projects.
Downloads
490
Maintainers
Keywords
Readme
Typescript configuration
The TS compiler base configuration for our Typescript projects.
installation
npm install --save-dev @pxlwidgets/tsconfig
Usage
Extend this base configuration in your tsconfig
json file:
{
"extends": "@pxlwidgets/tsconfig"
// ...
}
Development
When making changes to the configuration, always make sure to use semantic versioning to indicate
breaking changes. This applies to both the tsconfig
itself and any major version bumps of npm dependencies.
Releasing a new version
- Commit all changes to the configuration, including documentation of the made changes under the Unreleased section in CHANGELOG.md.
- Create a new header in CHANGELOG.md for the new version (Do not commit!)
- use the npm script
bump
to bump the package version:npm run bump <new version>
Replace with a valid semver version number, e.g.
npm run bump 3.1.1
. This script uses yarn under the hood to allow the header change in the changelog to be included in the version commit. - Publish the package (publicly) on npm:
npm publish --access=public