typescript
Installation
SKILL.md
TypeScript – kickstart-next-ssg
When to use
- Adding
.ts/.tsxfiles or changing compiler options - Understanding the
@/import alias or strictness - Adjusting ESLint behavior for this project
Instructions
Compiler (tsconfig.json)
strict: true,noEmit: true,jsx: "react-jsx",moduleResolution: "bundler",isolatedModules: true.- Path alias:
@/*maps to the repository root — e.g.@/lib/contentstack,@/pages/.... - Include pattern covers
**/*.ts,**/*.tsx, and.next/types/**/*.ts.