@blueprintjs/tslint-config in your tslint configurationblueprint-html-components: use Blueprint <Table> component instead of JSX intrinsic element.
But Table component is totally different then this html table - different functionality and look.
You got unexpected error.
No error.
Exclude table tag from this tslint rule.
I think the error message is wrong. it should say <HTMLTable>
use import { HTMLTable } from "@blueprintjs/core"
@adidahiya 'blueprint' has two components for table <Table> and <HTMLTable>.
I think the error should say
use Blueprint <Table> or <HTMLTable> component instead of JSX intrinsic element.
@tanmoyopenroot no, Table is very different and would be confusing to offer in replacement of the intrinsic element. If someone wanted a Blueprint data grid, it's better to go find it in the documentation first. Also <Table> requires installing another package. Open to PRs to change the error message as I suggested above.