ESLint shareable config for TypeScript
Important
This config has been merged into eslint-config-xo.
npm install --save-dev eslint-config-xo-typescriptXO has built-in support for TypeScript, using this package under the hood, so you do not have to configure anything.
Add some ESLint config to your package.json (or .eslintrc):
// eslint.config.js
import xoTypeScript from 'eslint-config-xo-typescript';
export default [
...xoTypeScript,
];Use the space sub-config if you want 2 space indentation instead of tabs:
import xoTypeScriptSpace from 'eslint-config-xo-typescript/space';
export default [
...xoTypeScriptSpace,
];