-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtsconfig.json
More file actions
34 lines (34 loc) · 961 Bytes
/
tsconfig.json
File metadata and controls
34 lines (34 loc) · 961 Bytes
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
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"allowJs": false,
"composite": false,
"declaration": true,
"declarationMap": true,
"forceConsistentCasingInFileNames": true,
"lib": ["ESNext"],
"module": "ESNext",
"baseUrl": ".",
"moduleResolution": "Bundler",
"noEmit": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"esModuleInterop": true,
"target": "ESNext",
"types": ["node", "vitest"],
"paths": {
"@chaos/*": ["./chaos/*"],
"@forks/*": ["./forks/*"],
"@helpers/*": ["./helpers/*"],
"@network-stability/*": ["./network-stability/*"],
"@workers/*": ["./workers/*"],
"@inboxes/*": ["./inboxes/*"],
"@versions/*": ["./versions/*"],
"@agents/*": ["./agents/*"],
"@bots/*": ["./bots/*"]
}
},
"include": ["**/*.ts", "vitest.config.ts", "vite.config.js"]
}