Tôi có một dự án lõi ASP.NET và tôi gặp lỗi này khi tôi cố gắng xây dựng nó:
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.
Đây là tsconfig.json
tập tin của tôi :
{
"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/*"
]
}
Đây có phải là một lỗi hay tôi đang làm gì đó sai? Gần đây tôi đã nâng cấp Visual Studio 2015 lên bản cập nhật 3. Có ai gặp phải điều này trước đây chưa?