-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
120 lines (120 loc) · 2.61 KB
/
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
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"compilerOptions": {
"esModuleInterop": true,
"skipLibCheck": true,
"target": "esnext",
"allowJs": true,
"strictFunctionTypes": true,
"resolveJsonModule": true,
"moduleDetection": "force",
"isolatedModules": true,
"strict": true,
"noUncheckedIndexedAccess": true,
"checkJs": true,
"lib": [
"dom",
"dom.iterable",
"ES2022",
"webworker"
],
"noEmit": true,
"module": "ESNext",
"moduleResolution": "bundler",
"jsx": "preserve",
"types": [
"vitest/globals"
],
"plugins": [
{
"name": "next"
}
],
"incremental": true,
"baseUrl": ".",
"paths": {
"@/env": [
"./src/env.js"
],
"@stuff/api-client/react": [
"src/backend/client/react.tsx"
],
"@stuff/api-client/vanilla": [
"src/backend/client/vanilla.ts"
],
"@stuff/api-client/server": [
"src/backend/client/server.ts"
],
"@stuff/infra-constants": [
"./packages/infra-constants/index.ts"
],
"@stuff/data-access/*": [
"./src/data-access/*"
],
"@stuff/structure": [
"./src/components/structure/index.ts"
],
"@stuff/typography": [
"./src/components/typography/index.ts"
],
"@stuff/ui/*": [
"./src/components/ui/*"
],
"@stuff/icons/*": [
"./src/components/icons/*"
],
"@stuff/lib/*": [
"./src/lib/*"
],
"@stuff/components/utils": [
"./src/components/utils.ts"
],
"@stuff/client/interfaces": [
"./src/interfaces/index.ts"
],
"@stuff/client/utils": [
"./src/utils/index.ts"
],
"contentlayer/generated": [
"./.contentlayer/generated"
],
"@style-system/css": [
"./packages/ui/css/index.css.ts"
],
"@style-system/utils": [
"./packages/ui/utils/index.ts"
],
"@style-system/patterns": [
"./packages/ui/patterns/index.ts"
],
"@style-system/palette": [
"./packages/ui/theme/palettes.css.ts"
],
"@backend/*": [
"./src/backend/*"
]
}
},
"include": [
".eslintrc.cjs",
"next-env.d.ts",
"src/**/*.ts",
"src/**/*.tsx",
"./unplugins.js",
"./packages/**/*.ts",
"./content/**/*.mdx",
"./packages/**/*.tsx",
"next.config.js",
"./infra/**/*.ts",
".next/types/**/*.ts",
"drizzle.config.ts",
".contentlayer/generated",
"./unimport.d.ts",
"./setupTest.ts"
],
"exclude": [
"**/dist",
".next",
"cdk.out",
"node_modules"
]
}