0.1.1 • Published 5 years ago

eslint-config-ts-node v0.1.1

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

eslint-config-ts-node

This package is just a subset of the ESLint configuration used by Create React App, but keeping those rules that are relevant for ts-node projects.

Usage

Install this package, ESLint and the necessary plugins.

npm install --save-dev eslint-config-ts-node @typescript-eslint/eslint-plugin@2.x @typescript-eslint/parser@2.x babel-eslint@10.x eslint@6.x eslint-plugin-import@2.x

Then create a file named .eslintrc.json with following contents in the root folder of your project:

{
  "extends": "ts-node"
}