-
Notifications
You must be signed in to change notification settings - Fork 34
/
tsconfig.json
30 lines (30 loc) · 1.12 KB
/
tsconfig.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
{
"compilerOptions": {
"baseUrl": "./src",
"paths": {
"@pages/*":["advantage/pages/*"],
"@uiConstants/*":["advantage/constants/*"],
"@restConstants/*":["API/REST/constants/*"],
"@soapConstants/*":["API/SOAP/constants/*"],
"@dbConstants/*":["database/constants/*"],
"@asserts/*":["framework/playwright/asserts/*"],
"@uiActions/*":["framework/playwright/actions/*"],
"@apiActions/*":["framework/playwright/API/*"],
"@utils/*":["framework/utils/*"],
"@allure":["framework/reporter/Allure"],
"@base-test":["framework/config/base-test"],
"@dbSteps/*":["database/steps/*"],
"@uiSteps/*":["advantage/steps/*"],
"@restSteps/*":["API/REST/steps/*"],
"@soapSteps/*":["API/SOAP/steps/*"],
},
"target": "ESNext",
"module": "CommonJS",
"moduleResolution": "Node",
"sourceMap": true,
"outDir": "../tests-out",
"resolveJsonModule": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
}
}