Reputation: 2137
I'm using visual studio community 2015 with a TypeScript Cordova project. I added an exclude
array object to tsconfig.json and I get the following message Validation against a prohibited schema succeeded
. Why is the message appearing?
My tsconfig.json looks like this:
tsconfig wiki documentation https://github.com/Microsoft/TypeScript/wiki/tsconfig.json
Upvotes: 0
Views: 300
Reputation: 276235
Validation against a prohibited schema succeeded. Why is the message appearing
The error message is misleading, but its because you are using files
with exclude
. They should not be used in conjunction and this fact is documented here : https://github.com/Microsoft/TypeScript/wiki/tsconfig.json#details
Upvotes: 3