# eslint-config-frontend-ts

This package includes the shareable ESLint (typescript) configuration used by [frontend-cli](https://github.com/theorchard/frontend-cli).

## How to use
Modify your package.json to contain the following parts:
```json
{
    ...

    "scripts":{
        ...

        "lint:js": "eslint --ext .js,.ts,.tsx,.jsx src"
    },
    "eslintConfig": {
        "extends": "@orchard/frontend-ts"
    },
    "devDependencies": {
        ...

        "@orchard/eslint-config-frontend-ts": "1.0.6"
    }
}
```
