Agent-skills-standard typescript-tooling
Development tools, linting, and build config for TypeScript. Use when configuring ESLint, Prettier, Jest, Vitest, tsconfig, or any TS build tooling. (triggers: tsconfig.json, .eslintrc.*, jest.config.*, package.json, eslint, prettier, jest, vitest, build, compile, lint)
install
source · Clone the upstream repo
git clone https://github.com/HoangNguyen0403/agent-skills-standard
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/HoangNguyen0403/agent-skills-standard "$T" && mkdir -p ~/.claude/skills && cp -r "$T/.agent/skills/typescript/typescript-tooling" ~/.claude/skills/hoangnguyen0403-agent-skills-standard-typescript-tooling && rm -rf "$T"
manifest:
.agent/skills/typescript/typescript-tooling/SKILL.mdsource content
TypeScript Tooling
Priority: P1 (OPERATIONAL)
Essential tooling for TypeScript development and maintenance.
Implementation Guidelines
- Compiler: Use
for CI builds;tsc
oresbuild
for development.ts-node - Linting: Enforce
withESLint
. Enable@typescript-eslint/recommended
.strict type checking - Formatting: Mandate
viaPrettier
andlint-staged
..prettierrc - Testing: Use
(orVitest
) for unit/integration testing. TargetJest
line coverage.> 80% - Builds: Use
(for library bundling) ortsup
(for web applications).Vite - TypeScript Config: Ensure
hastsconfig.json
,strict: true
, andnoImplicitAny: true
.esModuleInterop: true - CI/CD: Always run
explicitly in the build pipeline to catch type errors.tsc --noEmit - Error Supression: Favor
over@ts-expect-error
for documented edge-cases.@ts-ignore
ESLint Configuration
Strict Mode Requirement
CRITICAL: Every file in the project, including tests (
.spec.ts), must adhere to strict type-checked rules. NEVER turn off @typescript-eslint/no-explicit-any or no-unsafe-* rules.
Common Linting Issues & Solutions
Request Object Typing
Problem: Using
any for Express request objects or creating duplicate inline interfaces.
Solution: Use the centralized interfaces in src/common/interfaces/request.interface.ts.
import { RequestWithUser } from 'src/common/interfaces/request.interface';
Unused Parameters
Problem: Function parameters marked as unused by linter. Solution: Prefix the parameter with an underscore (e.g.,
_data) or remove it. NEVER use eslint-disable.
Test Mock Typing
Problem: Jest mocks triggering unsafe type warnings when
expect.any() or custom mocks are used.
Solution: Cast the mock or expectation using as unknown as TargetType.
mockRepo.save.mockResolvedValue(result as unknown as User);
Configuration
// tsconfig.json { "compilerOptions": { "strict": true, "noImplicitReturns": true, "noUnusedLocals": true } }
Verification Workflow (Mandatory)
After editing any
.ts / .tsx file:
- Call
(typescript-lsp MCP tool) — surfaces type errors in real time.getDiagnostics - Run
in CI — catches project-wide errors LSP may miss.tsc --noEmit - Run
— auto-fix formatting and lint violations.eslint --fix
getDiagnostics is the fastest feedback loop. Use it before every commit on modified files.
LSP Exploration: Use
getHover to inspect inferred types inline. Use getReferences before renaming any symbol to verify all call sites.
References
See references/REFERENCE.md for CI config, test setup, and advanced ESLint rules.