スキル一覧に戻る
gigi-f

typescript-build-checker

by gigi-f

0🍴 1📅 2025年11月7日
GitHubで見るManusで実行

SKILL.md


name: TypeScript Build Checker description: Check TypeScript compilation errors, run build commands, and validate the codebase. Use when the user mentions TypeScript errors, build issues, compilation problems, or wants to verify code integrity.

TypeScript Build Checker

Check TypeScript compilation status and build the project.

Quick Start

Check for TypeScript errors

cd /home/gianfiorenzo/Documents/Vs\ Code/babylon_fp
npx tsc --noEmit

Build the project

cd /home/gianfiorenzo/Documents/Vs\ Code/babylon_fp
npm run build

Run development server

cd /home/gianfiorenzo/Documents/Vs\ Code/babylon_fp
npm run dev

Common Commands

Full type check with detailed output

cd /home/gianfiorenzo/Documents/Vs\ Code/babylon_fp
npx tsc --noEmit --pretty

Watch mode for continuous compilation

cd /home/gianfiorenzo/Documents/Vs\ Code/babylon_fp
npx tsc --watch --noEmit

Check specific file

cd /home/gianfiorenzo/Documents/Vs\ Code/babylon_fp
npx tsc --noEmit <filename>

Interpreting Results

  • Exit code 0: No errors, compilation successful
  • Exit code 1: Errors found, check output for details
  • Look for error patterns like:
    • error TS2345: Type mismatch
    • error TS2339: Property doesn't exist
    • error TS2322: Type not assignable
    • error TS2304: Cannot find name/type

Best Practices

  1. Always check TypeScript errors before committing code
  2. Fix errors from top to bottom (earlier errors may cause later ones)
  3. Use --noEmit flag to check without generating files
  4. Run full build after fixing errors to ensure no runtime issues

スコア

総合スコア

50/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です