-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathtsconfig.json
More file actions
43 lines (43 loc) · 1.15 KB
/
tsconfig.json
File metadata and controls
43 lines (43 loc) · 1.15 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
38
39
40
41
42
43
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"module": "commonjs",
"allowJs": false,
"noImplicitAny": false,
"removeComments": true,
"preserveConstEnums": true,
"esModuleInterop": true,
"inlineSourceMap": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"noUncheckedSideEffectImports": false,
"typeRoots": ["./node_modules/@types", "./types"],
"types": ["jest", "node"],
"target": "ES2022",
"jsx": "react",
"strict": true,
"rootDir": "./",
"paths": {
"*": ["./*"],
"@web-client/*": ["./web-client/src/*"],
"@web-api/*": ["./web-api/src/*"],
"@shared/*": ["./shared/src/*"]
}
},
"ts-node": {
"files": true,
"require": ["tsconfig-paths/register"]
},
"include": ["./**/*.ts", "./**/*.tsx", "./eslint.config.mjs"],
"exclude": [
"node_modules",
"targetBranch",
"./cypress/**/*",
"./cypress.config.ts",
"./cypress-smoketests.config.ts",
"./cypress-smoketests-readonly.config.ts",
"./cypress-smoketests-readonly-public.config.ts",
"./cypress-public.config.ts",
"./cypress-real-user-tests.config.ts"
]
}