npm install @v4fire/typescript-check
npx @v4fire/typescript-check
Usage with github actions:
npm install @v4fire/typescript-check
typescript.yml
name: Typescript Error Reporteron: [push, pull_request]jobs:
test:
runs-on: ubuntu-lateststrategy:
matrix:
node-version: [14.1]steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}uses: actions/setup-node@v1with:
node-version: ${{ matrix.node-version }}
- name: Install dependenciesrun: npm ci
- name: build tsconfigrun: npx gulp build:tsconfig
- name: Typecheckrun: npx @v4fire/typescript-checknpx @v4fire/typescript-check --logger cli
npx @v4fire/typescript-check --max-errors 70
npx @v4fire/typescript-check --tsconfig-filename client.tsconfig.json