-
Notifications
You must be signed in to change notification settings - Fork 47
/
tsconfig.json
55 lines (55 loc) · 1.15 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"compilerOptions": {
"module": "commonjs",
"allowJs": false,
"noImplicitAny": false,
"removeComments": true,
"preserveConstEnums": true,
"esModuleInterop": true,
"inlineSourceMap": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"typeRoots": [
"./node_modules/@types",
"./types"
],
"types": [
"jest",
"node"
],
"target": "es6",
"jsx": "react",
"strict": true,
"baseUrl": "./",
"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"],
"exclude": [
"node_modules",
"targetBranch",
"./scripts/run-once-scripts/**/*",
"./cognito-triggers-sls/node_modules/**/*",
"./cypress/**/*",
"./cypress.config.ts",
"./cypress-smoketests.config.ts",
"./cypress-smoketests-readonly.config.ts",
"./cypress-smoketests-readonly-public.config.ts",
"./cypress-public.config.ts"
]
}