-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathtsconfig.json
More file actions
105 lines (105 loc) · 2.02 KB
/
tsconfig.json
File metadata and controls
105 lines (105 loc) · 2.02 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
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"compilerOptions": {
"baseUrl": ".",
"target": "ES2021",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"jsx": "preserve",
"module": "ESNext",
"moduleResolution": "bundler",
"allowJs": true,
"sourceMap": true,
"sourceRoot": "/",
"disableSizeLimit": true,
"skipLibCheck": true,
"strict": true,
"strictPropertyInitialization": false,
"noImplicitAny": false,
"useUnknownInCatchVariables": false,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"downlevelIteration": true,
"incremental": true,
"isolatedModules": true,
"paths": {
/* local modules */
"cookie-storage": [
"local_modules/cookie-storage"
],
"wallet": [
"local_modules/wallet"
],
"wallet/*": [
"local_modules/wallet/*"
],
"analytics": [
"local_modules/analytics"
],
"svg-provider": [
"local_modules/svg-provider"
],
/* src */
"hooks": [
"src/hooks"
],
"helpers": [
"src/helpers"
],
"helpers/*": [
"src/helpers/*"
],
"contracts": [
"src/contracts"
],
"contracts/*": [
"src/contracts/*"
],
"components/*": [
"src/components/*"
],
"compositions/*": [
"src/compositions/*"
],
"compositions": [
"src/compositions"
],
"graph/*": [
"src/graph/*"
],
"contexts": [
"src/contexts"
],
"views/*": [
"src/views/*"
],
"pages/*": [
"src/pages/*"
]
},
"plugins": [
{
"name": "next"
}
]
},
"include": [
"next-env.d.ts",
"additional.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
".next/dev/types/**/*.ts"
],
"exclude": [
"e2e",
"node_modules",
"src/_deprecated",
"src/contracts/index.ts",
"src/graph"
]
}