11 lines
306 B
JavaScript
11 lines
306 B
JavaScript
// This configuration only applies to the package manager root.
|
|
/** @type {import("eslint").Linter.Config} */
|
|
module.exports = {
|
|
ignorePatterns: ["apps/**", "packages/**"],
|
|
extends: ["@repo/eslint-config/library.js"],
|
|
parser: "@typescript-eslint/parser",
|
|
parserOptions: {
|
|
project: true,
|
|
},
|
|
}
|