ESLint shareable config for TypeScript
This module is meant as a simple start for projects with JS and TS files that live side by side, with an existing config for the JS files that does not apply to the TS files.
npm install --save-dev eslint-config-typescript-basic
# OR
yarn add -D eslint-config-typescript-basic
.eslintrc
{
"extends": ["typescript-basic"]
}
package.json
{
"eslintConfig": {
"extends": ["typescript-basic"]
}
}