https://github.com/Microsoft/TypeScript
Raw File
Tip revision: 144381f97b711b2be50906cc09adf09d9ee7380c authored by Daniel Rosenwasser on 11 December 2020, 01:46:27 UTC
Try adopting 'useUnknownInCatchVariables' on our own codebase.
Tip revision: 144381f
.travis.yml
language: node_js

node_js:
  - 'node'
  - '12'
  - '10'

env:
  - workerCount=3 timeout=600000

matrix:
  fast_finish: true

branches:
  only:
  - master
  - /^release-.*/

install:
  - npm uninstall typescript --no-save
  - npm ci

cache:
  directories:
    - node_modules

git:
  depth: 1
back to top