typescript-tooling | Skill Performance & Reviews | TopRankSkills

TopRank Skills

Home / Skills / tools / typescript-tooling

typescript-tooling

maintained by HoangNguyen0403

star 143 account_tree 48 verified_user MIT License
bolt View GitHub

name: TypeScript Tooling description: Development tools, linting, and build configuration for TypeScript projects. metadata: labels: [tooling, typescript, eslint, prettier, testing] triggers: files: ['tsconfig.json', '.eslintrc.', 'jest.config.', 'package.json'] keywords: [eslint, prettier, jest, vitest, build, compile, lint]

TypeScript Tooling

Priority: P1 (OPERATIONAL)

Essential tooling for TypeScript development and maintenance.

Implementation Guidelines

  • Compiler: tsc for CI. ts-node/esbuild for dev.
  • Lint: ESLint + @typescript-eslint. Strict type checking.
  • Format: Prettier (on save + commit).
  • Test: Jest/Vitest > 80% coverage.
  • Build: tsup (libs), Vite/Webpack (apps).
  • Check: tsc --noEmit in CI.

Anti-Patterns

  • No Disable: Avoid // eslint-disable.
  • No Skip: Avoid skipLibCheck: true if possible.
  • No Ignore: Use @ts-expect-error > @ts-ignore.

Configuration

// tsconfig.json
{
  "compilerOptions": {
    "strict": true,
    "noImplicitReturns": true,
    "noUnusedLocals": true
  }
}

Reference & Examples

For testing configuration and CI/CD setup: See references/REFERENCE.md.

Related Topics

best-practices | language

chat Comments (0)

chat_bubble_outline

No comments yet. Be the first to share your thoughts!

Skill Details

GitHub Stars 143
GitHub Forks 48
Created Jan 2026
Last Updated 6个月前
tools tools automation tools

Related Skills

specs-gen
chevron_right
nestjs-expert
chevron_right
glm-coding-agent
chevron_right
performance-optimization
chevron_right
creating-pr
chevron_right

Build your own?

Join 12,000+ developers contributing to the Claude ecosystem.