-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathtsconfig.json
executable file
·79 lines (79 loc) · 1.66 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"compilerOptions": {
"target": "es6", // ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017','ES2018' or 'ESNEXT'.
"module": "esnext", // Module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'.
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"jsx": "react",
"declaration": false,
"isolatedModules": true,
/* Additional Checks */
"useDefineForClassFields": true,
"skipLibCheck": true,
"noResolve": false,
"moduleResolution": "node",
"esModuleInterop": true,
"resolveJsonModule": true,
"noImplicitAny": false,
"noImplicitReturns": false,
"allowSyntheticDefaultImports": true,
"baseUrl": ".",
"paths": {
"assets/*": [
"source/assets/*"
],
"components/*": [
"source/components/*"
],
"scripts/*": [
"source/scripts/*"
],
"containers/*": [
"source/containers/*"
],
"pages/*": [
"source/pages/*"
],
"routers/*": [
"source/routers/*"
],
"state/*": [
"source/state/*"
],
"constants/*": [
"source/constants/*"
],
"services/*": [
"source/services/*"
],
"hooks/*": [
"source/hooks/*"
],
"types/*": [
"source/types/*"
],
"utils/*": [
"source/utils/*"
],
"helpers/*": [
"source/helpers/*"
],
"tests/*": [
"tests/*"
]
}
},
"exclude": [
"node_modules"
],
"include": [
"source",
"webpack.config.ts",
"cypress",
"tests",
"playwright.config.ts"
]
}