mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-11-14 16:13:14 +01:00
14 lines
343 B
JavaScript
14 lines
343 B
JavaScript
import typescriptESLint from "typescript-eslint"
|
|
import config from "@repo/eslint-config"
|
|
|
|
export default typescriptESLint.config(...config, {
|
|
files: ["**/*.ts", "**/*.tsx"],
|
|
languageOptions: {
|
|
parser: typescriptESLint.parser,
|
|
parserOptions: {
|
|
projectService: true,
|
|
tsconfigRootDir: import.meta.dirname,
|
|
},
|
|
},
|
|
})
|