- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- ソース を表示
- TypeScript/環境構築/ESLint + TypeScript へ行く。
- 1 (2021-02-17 (水) 06:07:54)
ESLint + TypeScript
- 2019年TSLintはdeprecatedになったので、2020年以降はESLintを代わりに使う
## インストール
npm install --save-dev eslint @typescript-eslint/parser @typescript-eslint/eslint-plugin
設定
.eslintrc.js 👇👇👇
module.exports = { root: true, parser: '@typescript-eslint/parser', plugins: [ '@typescript-eslint', ], extends: [ 'eslint:recommended', 'plugin:@typescript-eslint/recommended', ], };