-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
37 lines (37 loc) · 1.2 KB
/
Copy pathtsconfig.json
File metadata and controls
37 lines (37 loc) · 1.2 KB
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
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "bundler",
"lib": ["ES2023", "DOM"],
"strict": true,
"noUncheckedIndexedAccess": true,
"exactOptionalPropertyTypes": true,
"noImplicitOverride": true,
"noFallthroughCasesInSwitch": true,
"noPropertyAccessFromIndexSignature": false,
"esModuleInterop": true,
"resolveJsonModule": true,
"isolatedModules": true,
"verbatimModuleSyntax": false,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"allowSyntheticDefaultImports": true,
"types": ["node", "@playwright/test"],
"baseUrl": "./",
"paths": {
"@pages/*": ["tests/pages/*"],
"@fixtures": ["tests/fixtures/index.ts"],
"@fixtures/*": ["tests/fixtures/*"],
"@factories": ["tests/factories/index.ts"],
"@factories/*": ["tests/factories/*"],
"@infra/*": ["tests/infra/*"],
"@support/*": ["tests/support/*"]
},
"noEmit": true,
"incremental": true,
"tsBuildInfoFile": ".tsbuildinfo"
},
"include": ["tests/**/*.ts", "playwright.config.ts", "*.config.ts", "*.config.mjs"],
"exclude": ["node_modules", "playwright-report", "test-results", "dist"]
}