Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

eslint-plugin-ts-parser-service

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-plugin-ts-parser-service

Find the running @typescript-eslint parser service

latest
Source
npmnpm
Version
1.0.3
Version published
Weekly downloads
18
-47.06%
Maintainers
1
Weekly downloads
 
Created
Source

eslint-plugin-ts-parser-service

npm Package

Find the running @typescript-eslint parser service.

This adds a dummy TS rule to eslint that does nothing but expose the TS parser service.

Example

See eslint-import-resolver-ts-parser-service for a complete example.

// .eslintrc.json
{
  "extends": [
    "eslint:recommended",
    "plugin:@typescript-eslint/recommended",
    "plugin:ts-parser-service/listen", // <- spy
  ],
  "parser": "@typescript-eslint/parser",
  "plugins": [
    "@typescript-eslint",
  ],
  "root": true,
}
// index.ts
import { getParserServices } from 'eslint-plugin-ts-parser-service/listener';

getParserServices(); // -> TS ParserServices

FAQs

Package last updated on 20 May 2026

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