-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.eslint.json
38 lines (38 loc) · 904 Bytes
/
tsconfig.eslint.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"extends": "./tsconfig.app.json",
"include": [
"src/**/*",
"src/**/*.vue",
"src/**/*.ts",
"eslint.config.js",
"jest.config.ts",
"jest.setup.ts",
"playwright-tests/**/*.ts",
"playwright.config.ts",
"vite.config.ts",
"env.d.ts",
"shims-vue.d.ts",
"src/**/*.spec.ts",
"tests/**/*.ts"
// Add any other files outside "src" that you want ESLint to cover
],
"exclude": [
"node_modules",
"dist",
"public",
"playwright-tests/**/*.js",
"playwright-tests/**/*.map",
"playwright-tests/**/*.html",
"playwright-tests/extractFailedTests.ts",
"playwright-report/index.html"
// exclude any directory you do not want TypeScript to process for linting
],
"overrides": [
{
"files": ["playwright-tests/extractFailedTests.ts"],
"parserOptions": {
"project": "./tsconfig.json"
}
}
]
}