[](https://circleci.com/gh/sahilpurav/browsercompat)
npm install browsercompat
npm i browsercompat --save-devrulesDirectory option, "node_modules/browsercompat/dist""rulesDirectory": ["codelyzer", "node_modules/browsercompat/dist"],Following is the schema needed to add inside tslint.json:
````
"rules": {
"supported-browsers": {
"options": {
"targets": {
"ie": 11,
"chrome": 60,
"safari": 10,
"firefox": 60
},
"whitelist": [
"Promise",
"Promise.*",
"Object.assign",
"Array.from",
"Array.find",
"Set.add",
"Set",
"String.startsWith",
"String.endsWith",
"Array.fill",
"String.repeat",
"HTMLElement.style"
]
}
}
}