-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
88 lines (88 loc) · 1.8 KB
/
tsconfig.json
File metadata and controls
88 lines (88 loc) · 1.8 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
{
"compilerOptions": {
"esModuleInterop": true,
"module": "CommonJS",
"lib": ["ES2022", "DOM"],
"noImplicitAny": false,
"preserveSymlinks": false,
"preserveConstEnums": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"strict": false,
"checkJs": false,
"target": "ES2022",
"moduleResolution": "Node",
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"types": ["jest", "node"],
"paths": {},
"rootDir": ".",
"allowJs": false,
"isolatedModules": true,
"noFallthroughCasesInSwitch": true,
"noEmit": true
},
"include": [
"./index.ts",
"./config.ts",
"./types.ts",
"./styled.d.ts",
"./schema.ts",
"./router.ts",
"contracts/**/*",
"legacy/**/*",
"modules/**/*",
"components/**/*",
"hooks/**/*",
"generated/**/*",
"trpc/**/*",
"types/**/*",
"web3/**/*",
"time/**/*",
"./api.ts",
"./array.ts",
"./browser.ts",
"./codebase.ts",
"./db.ts",
"./decoder.ts",
"./format.ts",
"./guid.ts",
"./json.ts",
"./log.ts",
"./math.ts",
"./merkle.ts",
"./mongo.ts",
"./number.ts",
"./object.ts",
"./otp.ts",
"./physics.ts",
"./process.ts",
"./router.ts",
"./rpc.ts",
"./schema.ts",
"./seer.ts",
"./binary.ts",
"./string.ts",
"./text.ts",
"./types.ts",
"./util.ts",
"./web3.ts",
"./websocket.ts",
"./zk.ts",
"./zod.ts",
"./api.ts",
"./guid.ts",
"./number.ts",
"./process.ts",
"./math.ts",
"./json.ts",
"./format.ts",
"./decoder.ts",
"legacy/**/*.json",
"contracts/**/*.json",
"generated/**/*.json"
],
"exclude": ["node_modules", "build"]
}