@nighttrax/eslint-config-tsx
Version:
NiGhTTraX's ESLint config for TSX apps
16 lines (13 loc) • 369 B
JavaScript
require("@rushstack/eslint-patch/modern-module-resolution");
module.exports = {
extends: [
"@nighttrax/eslint-config-react",
// base comes after react because it includes prettier, and it needs to be the last.
"@nighttrax/eslint-config-base",
],
settings: {
"import/parsers": {
"@typescript-eslint/parser": [".ts", ".tsx"],
},
},
};