-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
48 lines (48 loc) · 914 Bytes
/
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
{
"compilerOptions": {
"baseUrl": ".",
"esModuleInterop": true,
"isolatedModules": true,
"jsx": "react",
"lib": ["dom", "dom.iterable", "es5", "es2019", "es6"],
"module": "esNext",
"moduleResolution": "node",
"noEmit": true,
"noUnusedLocals": true,
"paths": {
"analytics/*": [
"src/analytics/*"
],
"components/*": [
"src/components/*"
],
"database/*": [
"src/database/*"
],
"images/*": [
"src/images/*"
],
"hooks/*": [
"src/hooks/*"
],
"skills/*": [
"src/skills/*"
],
"store/*": [
"src/store/*"
],
"translations/*": [
"src/translations/*"
]
},
"resolveJsonModule": true,
"strict": true,
"target": "es2018"
},
"include": [
"cfg/colors.json",
"custom.d.ts",
"src",
"test"
]
}