-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathtsconfig.base.json
40 lines (40 loc) · 1.28 KB
/
tsconfig.base.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
39
40
{
"compilerOptions": {
"target": "ES2022",
"lib": ["ES2022", "DOM", "dom.iterable"],
"module": "CommonJS",
"moduleResolution": "Node",
"resolveJsonModule": true,
"allowJs": true,
"checkJs": true,
"declaration": true,
"declarationMap": false,
"baseUrl": ".",
"rootDir": ".",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"noImplicitAny": false,
"skipLibCheck": true,
"paths": {
"@uuv/a11y": ["packages/a11y/src/index.ts"],
"@uuv/runner-commons": ["packages/runner-commons/src/index.ts"],
"@uuv/runner-commons/runner/event": [
"packages/runner-commons/src/runner/event/index.ts"
],
"@uuv/runner-commons/test": [
"packages/runner-commons/src/tests/index.ts"
],
"@uuv/runner-commons/wording/mobile": [
"packages/runner-commons/src/assets/i18n/mobile/index.ts"
],
"@uuv/runner-commons/wording/web": [
"packages/runner-commons/src/assets/i18n/web/index.ts"
],
"@uuv/runner-cypress": ["packages/runner-cypress/src/index.ts"],
"@uuv/runner-playwright": ["packages/runner-playwright/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp", "**/dist/**.*"]
}