New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@v4fire/typescript-check

Package Overview
Dependencies
Maintainers
16
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@v4fire/typescript-check

Tool to check typescript errors

  • 1.4.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2
decreased by-97.73%
Maintainers
16
Weekly downloads
 
Created
Source

typescript-checker

Run:

npm install @v4fire/typescript-check
npx @v4fire/typescript-check

Usage with github actions:

npm install @v4fire/typescript-check

typescript.yml

name: Typescript Error Reporter

on: [push, pull_request]

jobs:
  test:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        node-version: [14.1]

    steps:
      - uses: actions/checkout@v1

      - name: Use Node.js ${{ matrix.node-version }}
        uses: actions/setup-node@v1
        with:
          node-version: ${{ matrix.node-version }}

      - name: Install dependencies
        run: npm ci

      - name: build tsconfig
        run: npx gulp build:tsconfig

      - name: Typecheck
        run: npx @v4fire/typescript-check

Setting up a CLI logger

npx @v4fire/typescript-check --logger cli

Setting up errors threshold

npx @v4fire/typescript-check --max-errors 70

Specifying a custom tsconfig file name (tsconfig.json is used by default)

npx @v4fire/typescript-check --tsconfig-filename client.tsconfig.json

FAQs

Package last updated on 25 Apr 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc