Bir ASP.NET çekirdek projem var ve onu oluşturmaya çalıştığımda şu hatayı alıyorum:
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.
Bu benim tsconfig.json
dosyam:
{
"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/*"
]
}
Bu bir hata mı yoksa yanlış bir şey mi yapıyorum? Yakın zamanda Visual Studio 2015'i 3'ü güncellemek için yükselttim. Bununla daha önce kimse karşılaştı mı?