Files
vscode-codeql/extensions/ql-vscode/test/tsconfig.json
Koen Vlaswinkel 5f382a5677 Combine ESLint configurations
Instead of having different ESLint configuration files in each
directory which don't seem to inherit the configuration correctly, this
will add `overrides` in the root file.
2023-01-30 16:43:19 +01:00

12 lines
253 B
JSON

{
"extends": "../tsconfig.json",
"include": ["**/*.ts", "../src/**/*.ts", "**/.eslintrc.js", "**/*.config.js"],
"exclude": [],
"compilerOptions": {
"noEmit": true,
"resolveJsonModule": true,
"rootDir": "..",
"jsx": "react"
}
}