Lint Staged config to handle both .js and .ts files
"lint-staged": { "*.js": [ "yarn prettier", "eslint --fix", "git add" ], "*.ts": [ "yarn prettier", "eslint --fix", "git add" ] },