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
Source:stackexchange.com