[Vuejs]-How to fix warnings on imported json file?

1👍

You can disable this warning by excluding json files on your tslint.json file like this:

"linterOptions": {
"exclude": [
"*.json",
"**/*.json"
]
}

the ** is for it to be recursive

Leave a comment