@1inch/tsconfig
v1.0.8
Published
Common tsconfig for all node.js repositories
Downloads
130
Keywords
Readme
tsconfig
Common tsconfig for all node.js repositories
Install
$ yarn add -D https://github.com/1inch/tsconfig.git#v1.0.0
And then setup tsconfig.json
:
{
"extends": "@1inch/tsconfig",
"include": ["src"],
"compilerOptions": {
"typeRoots": [
"./src/types-overrides",
"./node_modules/@types"
],
"outDir": "./dist",
"baseUrl": "./"
}
}
Release new version
# patch
$ yarn release --patch
# minot
$ yarn release --minor
# major
$ yarn release --major
# exact
$ yarn release v1.0.0