-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtsconfig.json
More file actions
75 lines (75 loc) · 2.06 KB
/
Copy pathtsconfig.json
File metadata and controls
75 lines (75 loc) · 2.06 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
{
"compilerOptions": {
"target": "ES2022",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "react-jsx",
"incremental": true,
"baseUrl": ".",
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": ["./*"],
"@/app/*": ["app/*"],
"@/components/*": ["components/*"],
"@/hooks/*": ["hooks/*"],
"@/lib/*": ["lib/*"],
"@/utils/*": ["utils/*"],
"@/types/*": ["types/*"],
"@/config/*": ["config/*"],
"@/constants/*": ["constants/*"],
"@/db/*": ["db/*"],
"@/schemas/*": ["db/schemas/*"],
"@/validators/*": ["validators/*"],
"@/services/*": ["services/*"],
"@/api/*": ["api/*"],
"@/middleware/*": ["middleware/*"],
"@/providers/*": ["providers/*"],
"@/store/*": ["store/*"],
"@/styles/*": ["styles/*"],
"@/public/*": ["public/*"],
"@/assets/*": ["public/assets/*"],
"@/i18n/*": ["i18n/*"],
"@/themes/*": ["themes/*"],
"@/routes/*": ["routes/*"],
"@/contexts/*": ["contexts/*"],
"@/tests/*": ["tests/*"],
"@/agents/*": ["agents/*"],
"@/tools/*": ["agents/tools/*"],
"@/prompts/*": ["prompts/*"],
"@/llm/*": ["llm/*"],
"@/web3/*": ["web3/*"],
"@/contracts/*": ["contracts/*"],
"@/wallet/*": ["wallet/*"],
"@/chains/*": ["chains/*"],
"@/crypto/*": ["crypto/*"],
"@/domain/*": ["core/domain/*"],
"@/use-cases/*": ["core/use-cases/*"],
"@/infrastructure/*": ["core/infrastructure/*"],
"@/interfaces/*": ["core/interfaces/*"],
"@/shared/*": ["core/shared/*"]
}
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
"eslint.config.mjs",
"postcss.config.mjs",
".papi/**/*",
".next/dev/types/**/*.ts"
],
"exclude": ["node_modules"]
}