@sourcegraph/tsconfig
v4.0.1
Published
Base tsconfig.json for Sourcegraph TypeScript projects
Downloads
8,605
Readme
Sourcegraph tsconfig
Base tsconfig.json for TypeScript projects at Sourcegraph. It only includes compiler options that make TypeScript more strict. It does not set any project-specific or environmental settings.
Usage
npm install --save-dev @sourcegraph/tsconfigThen add this tsconfig.json:
{
"extends": "./node_modules/@sourcegraph/tsconfig/tsconfig.json"
}Making changes
npm link
cd <project>
npm link @sourcegraph/tsconfig
npm run lintPublish a new version
Follow semver.
npm version major|minor|patch
git push
git push --tags
npm publish