A small strict config for many projects.
Section: tsconfig Basics
Minimal tsconfig
json
json
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "Bundler",
"strict": true,
"noEmit": true,
"skipLibCheck": true
}
}Explanation
A `tsconfig.json` marks the project root and controls compilation behavior.
Learn the surrounding workflow
Compare similar commands or jump into common fixes when this command is part of a bigger troubleshooting path.
Related commands
Same sheet · prioritizing tsconfig Basics