0

I am having a problem with a tsconfig.json file in my Vuetify project. The very first { has a red squiggle beneath it and on hover shows the following error:

No inputs were found in config file

Here is the file.

tsconfig.json

 { // red squiggle line here
      "compilerOptions": {
        "target": "esnext",
        "module": "esnext",
        "strict": false,
        "jsx": "preserve",
        "importHelpers": true,
        "moduleResolution": "node",
        "experimentalDecorators": true,
        "esModuleInterop": true,
        "allowSyntheticDefaultImports": true,
        "sourceMap": true,
        "baseUrl": ".",
        "types": [
          "webpack-env",
          "mocha",
          "chai",
          "vuetify"
        ],
        "paths": {
          "@/*": [
            "src/*"
          ]
        },
        "lib": [
          "esnext",
          "dom",
          "dom.iterable",
          "scripthost"
        ]
      },
      "include": [
        "src/**/*.ts",
        "src/**/*.tsx",
        "src/**/*.vue",
        "tests/**/*.ts",
        "tests/**/*.tsx"
      ],
      "exclude": [
        "node_modules"
      ]
    }

I am not really sure what the problem is here. I would appreciate any guidance on how to solve it. Thanks in advance!

mikeym
  • 4,739
  • 6
  • 30
  • 48
  • Please see: [tsconfig inputs were not found in config file](https://stackoverflow.com/questions/41211566/tsconfig-json-buildno-inputs-were-found-in-config-file) – Elvis Pimentel May 15 '22 at 23:37
  • @ElvisPimentel thanks for the link. I already have a `main.ts` in my project so unfortunately it didn't fix the issue. – mikeym May 16 '22 at 13:23

0 Answers0