mirror of
https://github.com/theoludwig/theoludwig.git
synced 2025-02-08 21:59:39 +01:00
14 lines
362 B
JavaScript
14 lines
362 B
JavaScript
import typescriptESLint from "typescript-eslint"
|
|
import configNextjs from "@repo/config-eslint/nextjs"
|
|
|
|
export default typescriptESLint.config(...configNextjs, {
|
|
files: ["**/*.ts", "**/*.tsx"],
|
|
languageOptions: {
|
|
parser: typescriptESLint.parser,
|
|
parserOptions: {
|
|
projectService: true,
|
|
tsconfigRootDir: import.meta.dirname,
|
|
},
|
|
},
|
|
})
|