Skip to content
FLAVIO COPES
flaviocopes.com
2026

Fix tsconfig.json 'No inputs were found in config file'

By Flavio Copes

How to fix the tsconfig.json No inputs were found in config file error in an Astro project by adding an empty TypeScript file or an include path.

~~~

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"
  ]
}

If you want to build a clean tsconfig.json from scratch, I built a free tsconfig generator that explains every option.

~~~

Related posts about js: