https://github.com/Microsoft/TypeScript
Raw File
Tip revision: a5c9f40344d625ab3a86acad474fcc8474412fc0 authored by Andy on 15 August 2017, 21:59:26 UTC
In services, show the aliasSymbol for a type even if it's not accessible in the current scope (#17810)
Tip revision: a5c9f40
.travis.yml
language: node_js

node_js:
  - 'stable'
  - '6'
  - '4'

sudo: false

env:
  - workerCount=3

matrix:
  fast_finish: true

branches:
  only:
  - master

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

cache:
  directories:
    - node_modules

git:
  depth: 1
back to top