Skip to content

Latest commit

 

History

History
40 lines (32 loc) · 564 Bytes

README.md

File metadata and controls

40 lines (32 loc) · 564 Bytes

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