├── .travis.yml └── README.md /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - 'stable' 5 | - '8' 6 | - '6' 7 | 8 | sudo: false 9 | 10 | env: 11 | - workerCount=3 timeout=600000 12 | 13 | matrix: 14 | fast_finish: true 15 | 16 | branches: 17 | only: 18 | - es-private-fields 19 | 20 | install: 21 | - npm uninstall typescript --no-save 22 | - npm uninstall tslint --no-save 23 | - npm install 24 | 25 | cache: 26 | directories: 27 | - node_modules 28 | 29 | git: 30 | depth: 1 31 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## What is this repository? 2 | 3 | This repository is a fork of Microsoft's TypeScript repository, created so that Bloomberg's 4 | engineering team can collaborate with each other (and the rest of the TypeScript community) 5 | on enhancements to TypeScript. Branches in this repository represent 'work in progress' that 6 | will be contributed to the Microsoft TypeScript repository when the work is ready for review. 7 | 8 | If you have any questions about the branches in this repository, feel free to open an issue 9 | so our team can discuss them with you. 10 | --------------------------------------------------------------------------------