We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6a9c1a commit aa33267Copy full SHA for aa33267
eslint.config.js
@@ -22,9 +22,12 @@ module.exports = [
22
...config,
23
files: ["**/*.ts"],
24
languageOptions: {
25
- globals: globals.node,
26
- parser: tseslint.parser,
27
- parserOptions: { project: "tsconfig.eslint.json" },
+ ...config.languageOptions,
+ globals: { ...config.languageOptions?.globals, ...globals.node },
+ parserOptions: {
28
+ ...config.languageOptions?.parserOptions,
29
+ project: "tsconfig.eslint.json",
30
+ },
31
},
32
plugins: { ...config.plugins, tsdoc },
33
rules: {
0 commit comments