https://github.com/Microsoft/TypeScript
Raw File
Tip revision: 7247d8e33a618650e256d43107b994b24b2bb84e authored by Anders Hejlsberg on 25 May 2018, 17:03:42 UTC
T extends unknown ? X : Y should eagerly resolve to X
Tip revision: 7247d8e
.travis.yml
language: node_js

node_js:
  - 'stable'
  - '8'
  - '6'

sudo: false

env:
  - workerCount=3 timeout=600000

matrix:
  fast_finish: true

branches:
  only:
  - master
  - release-2.7
  - release-2.8
  - release-2.9

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

cache:
  directories:
    - node_modules

git:
  depth: 1
back to top