npm init
yarn init
tsc --init
npx eslint --init
Ищем файл .eslintrc.js
и вставляем следующий код:
module.exports = {
parser: '@typescript-eslint/parser',
parserOptions: {
project: 'tsconfig.json',
tsconfigRootDir : __dirname,
sourceType: 'module',
},
plugins: ['@typescript-eslint/eslint-plugin'],
extends: [
'plugin:@typescript-eslint/recommended',
'plugin:prettier/recommended',
],
root: true,
env: {
node: true,
jest: true,
},
ignorePatterns: ['.eslintrc.js'],
rules: {
'@typescript-eslint/interface-name-prefix': 'off',
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/no-explicit-any': 'off',
},
};
Далее переустанавливаем зависимости
npm install --save-dev typescript tsconfig-paths ts-node ts-loader eslint-plugin-react eslint @typescript-eslint/parser @typescript-eslint/eslint-plugin @types/node
yarn add -D typescript tsconfig-paths ts-node ts-loader eslint-plugin-react eslint @typescript-eslint/parser @typescript-eslint/eslint-plugin @types/node
touch .prettierrc
Ищем файл .prettierrc
и вставляем следующий код:
{
"singleQuote": true,
"trailingComma": "all"
}
Устанавливаем зависимости
npm install --save-dev prettier eslint-plugin-prettier eslint-config-prettier
yarn add -D prettier eslint-plugin-prettier eslint-config-prettier
Устанавливаем зависимости
npm install react react-dom
npm install --save-dev @types/react @types/react-dom
yarn add react react-dom
yarn add -D @types/react @types/react-dom