আমার একটি এএসপি.নেট কোর প্রকল্প রয়েছে এবং আমি এটি নির্মাণের চেষ্টা করার সময় এই ত্রুটিটি পাচ্ছি:
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/*"
]
}
এটি কি বাগ বা আমি কিছু ভুল করছি? আমি সম্প্রতি আপডেট করার জন্য ভিজ্যুয়াল স্টুডিও 2015 আপগ্রেড করেছি 3. এর আগে কি কেউ এর মুখোমুখি হয়েছে?