1. ホーム
  2. json

[解決済み】tsconfig.json: Build:No inputs were found in config file.

2022-02-18 22:38:26

質問

ASP.NET coreのプロジェクトがあるのですが、ビルドしようとするとこのエラーが出ます。

error TS18003: Build:No inputs were found in config file 'Z:/Projects/client/ZV/src/ZV/Scripts/tsconfig.json'. Specified 'include' paths were '["**/*"]' and 'exclude' paths were '["../wwwroot/app","node_modules/*"]'.
1>         The command exited with code 1.
1>       Done executing task "VsTsc" -- FAILED.

これは私の tsconfig.json ファイルを作成します。

{
  "compileOnSave": true,
  "compilerOptions": {
    "emitDecoratorMetadata": true,
    "experimentalDecorators": true,
    "lib": [ "es5", "dom" ],
    "module": "commonjs",
    "moduleResolution": "node",
    "noEmitOnError": true,
    "noImplicitAny": false,
    "outDir": "../wwwroot/app/",
    "removeComments": false,
    "sourceMap": true,
    "target": "es6"
  },
  "exclude": [
    "../wwwroot/app",
    "node_modules/*"
  ]
}

これはバグなのでしょうか、それとも私のやり方が間違っているのでしょうか?最近Visual Studio 2015をupdate 3にアップグレードしました。どなたか、このような現象に遭遇したことがある方はいらっしゃいますか?

解決方法を教えてください。

typescript scripts フォルダ(tsconfig ファイルの場所)に空の typescript ファイルを追加して、typescript コンパイラを満足させてください。