11 lines
271 B
JavaScript
11 lines
271 B
JavaScript
/** @type {import("eslint").Linter.Config} */
|
|
module.exports = {
|
|
root: true,
|
|
extends: ["@usesend/eslint-config/react-internal.js"],
|
|
parser: "@typescript-eslint/parser",
|
|
parserOptions: {
|
|
project: "./tsconfig.lint.json",
|
|
tsconfigRootDir: __dirname,
|
|
},
|
|
};
|