-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
115 lines (115 loc) · 4.55 KB
/
tsconfig.json
File metadata and controls
115 lines (115 loc) · 4.55 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
106
107
108
109
110
111
112
113
114
115
{
"compilerOptions": {
"target": "ESNext",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"allowImportingTsExtensions": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"types": ["bun", "node", "safe-regex"],
"jsx": "react-jsx",
"incremental": true,
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/components": ["./src/components/index.ts"],
"@/components/*": ["./src/components/*"],
"@/lib": ["./src/lib/index.ts"],
"@/lib/utils": ["./src/lib/utils/index.ts"],
"@/lib/sanitize": ["./src/lib/sanitize/index.ts"],
"@/lib/server": ["./src/lib/server/index.ts"],
"@/lib/api/feeds/*": ["./src/lib/api/feed-source-api/*"],
"@/lib/core/server": ["./src/lib/core/server-core/index.ts"],
"@/lib/core/article-filters": ["./src/lib/core/filters.ts"],
"@/lib/core/article-preview": ["./src/lib/core/preview.ts"],
"@/lib/core/article-status": ["./src/lib/core/server-core/status.ts"],
"@/lib/core/feed-batch-pipeline": ["./src/lib/core/pipeline.ts"],
"@/lib/core/feed-fetcher": ["./src/lib/core/server-core/fetcher.ts"],
"@/lib/core/feed-http": ["./src/lib/core/http-client.ts"],
"@/lib/core/feed-parser": ["./src/lib/core/parser.ts"],
"@/lib/core/feed-refresh": ["./src/lib/core/refresher.ts"],
"@/lib/core/feed-url-validator": ["./src/lib/core/url-validator.ts"],
"@/lib/core/runtime": ["./src/lib/core/runtime.ts"],
"@/app/dashboard/DashboardView": [
"./src/app/dashboard/dashboard-view/index.ts"
],
"@/app/dashboard/components/feed/*": [
"./src/app/dashboard/dashboard-components/feed-view/*"
],
"@/app/dashboard/components/*": [
"./src/app/dashboard/dashboard-components/*"
],
"@/app/dashboard/components/settings/*": [
"./src/app/dashboard/dashboard-components/settings-dialog/*"
],
"@/app/dashboard/dashboard-services/article-filters": [
"./src/app/dashboard/dashboard-services/article/filters.ts"
],
"@/app/dashboard/dashboard-services/dashboard-view-model": [
"./src/app/dashboard/dashboard-services/dashboard-state/view-model.ts"
],
"@/app/dashboard/dashboard-services/category-operations": [
"./src/app/dashboard/dashboard-services/category/index.ts"
],
"@/app/dashboard/dashboard-services/feed-source-operations": [
"./src/app/dashboard/dashboard-services/feed-data/source/operations.ts"
],
"@/app/dashboard/hooks/useSettingsModalState": [
"./src/app/dashboard/settings-state/useSettingsModalState.ts"
],
"@/app/dashboard/hooks/useSettingsProxyState": [
"./src/app/dashboard/settings-state/useSettingsProxyState.ts"
],
"@/cli/*": ["./node_modules/check-suite/src/cli/*"],
"@/config/*": ["./node_modules/check-suite/src/config/*"],
"@/config-schema/*": ["./node_modules/check-suite/src/config-schema/*"],
"@/foundation/*": ["./node_modules/check-suite/src/foundation/*"],
"@/format/*": ["./node_modules/check-suite/src/format/*"],
"@/inline-ts/*": ["./node_modules/check-suite/src/inline-ts/*"],
"@/post-process/*": ["./node_modules/check-suite/src/post-process/*"],
"@/process/*": ["./node_modules/check-suite/src/process/*"],
"@/quality/*": ["./node_modules/check-suite/src/quality/*"],
"@/recipes/*": ["./node_modules/check-suite/src/recipes/*"],
"@/runtime-config/*": ["./node_modules/check-suite/src/runtime-config/*"],
"@/step/*": ["./node_modules/check-suite/src/step/*"],
"@/suite-processing/*": [
"./node_modules/check-suite/src/suite-processing/*"
],
"@/summary/*": ["./node_modules/check-suite/src/summary/*"],
"@/timeout/*": ["./node_modules/check-suite/src/timeout/*"],
"@/types/*": ["./node_modules/check-suite/src/types/*"],
"@/regex.ts": ["./node_modules/check-suite/src/regex.ts"],
"@/lib/*": ["./src/lib/*"],
"@/*": ["./src/*"]
}
},
"include": [
"next-env.d.ts",
"**/*.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
".next/dev/types/**/*.ts",
".next-playwright/types/**/*.ts",
".next-playwright/dev/types/**/*.ts"
],
"exclude": [
"**/node_modules/**",
"**/.next/**",
"**/dist/**",
"**/build/**",
"**/coverage/**",
"**/.cache/**",
"drizzle/meta/**",
"src/components/ui/**"
]
}