मेरे पास ASP.NET कोर प्रोजेक्ट है और जब मैं इसे बनाने की कोशिश कर रहा हूँ तो मुझे यह त्रुटि मिल रही है:
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 को अपग्रेड किया है। क्या किसी ने इससे पहले सामना किया है?
