https://github.com/Microsoft/TypeScript
Raw File
Tip revision: 25370369b23f025815999ede8ecd2df2185d71c0 authored by Ron Buckton on 22 January 2019, 23:25:14 UTC
Enable debug info by default when debugging the language server
Tip revision: 2537036
.travis.yml
language: node_js

node_js:
  - 'node'
  - '10'
  - '6'

sudo: false

env:
  - workerCount=3 timeout=600000

matrix:
  fast_finish: true

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

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

cache:
  directories:
    - node_modules

git:
  depth: 1
back to top