Skip to content

How to fix tsconfig.json "No inputs were found in config file" error

New Course Coming Soon:

Get Really Good at Git

A few students of mine had this problem with an Astro project.

Astro by default includes a tsconfig.json file and this file gave them an error in VS Code.

The error was coming from tsconfig.json and it said

No inputs were found in config file

We weren’t writing any TypeScript, so that was a strange issue.

Here are some possible solutions.

First, try restarting VS Code.

If that doesn’t work, add an empty file.ts file in the same folder where there’s the tsconfig.json file.

Or delete tsconfig.json.

Unless you plan to use TypeScript, in which case you can configure it to point to the TypeScript files in your project by adding include, from:

{
  "compilerOptions": {
    "moduleResolution": "node"
  }
}

to

{
  "compilerOptions": {
    "moduleResolution": "node"
  },
  "include": [
    "./src/**/*.ts"
  ]
}
Are you intimidated by Git? Can’t figure out merge vs rebase? Are you afraid of screwing up something any time you have to do something in Git? Do you rely on ChatGPT or random people’s answer on StackOverflow to fix your problems? Your coworkers are tired of explaining Git to you all the time? Git is something we all need to use, but few of us really master it. I created this course to improve your Git (and GitHub) knowledge at a radical level. A course that helps you feel less frustrated with Git. Launching Summer 2024. Join the waiting list!
→ Get my JavaScript Beginner's Handbook
→ Read my JavaScript Tutorials on The Valley of Code
→ Read my TypeScript Tutorial on The Valley of Code

Here is how can I help you: