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:
tscfor CI.ts-node/esbuildfor 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 --noEmitin CI.
Anti-Patterns
-
No Disable: Avoid
// eslint-disable. -
No Skip: Avoid
skipLibCheck: trueif 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)
Sign in to join the discussion and leave a comment.
Skill Details
GitHub Stars
143
GitHub Forks
48
Created
Jan 2026
Last Updated
4 months ago
tools
tools automation tools
Related Skills
Build your own?
Join 12,000+ developers contributing to the Claude ecosystem.
No comments yet. Be the first to share your thoughts!