-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathtsconfig.json
More file actions
30 lines (30 loc) · 1.05 KB
/
tsconfig.json
File metadata and controls
30 lines (30 loc) · 1.05 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
{
"compilerOptions": {
"target": "ES2020",
"lib": ["ES2020"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"types": ["node"],
"baseUrl": ".",
"paths": {
"@gemini-proxy/core": ["packages/core/src/index.ts"],
"@gemini-proxy/core/*": ["packages/core/src/*"],
"@gemini-proxy/database": ["packages/database/index.ts"],
"@gemini-proxy/database/*": ["packages/database/*"],
"@gemini-proxy/vercel": ["packages/vercel/src/index.ts"],
"@gemini-proxy/vercel/*": ["packages/vercel/src/*"]
}
},
"include": ["**/*.ts", "**/*.tsx", "apps/web/next.config.mjs"],
"exclude": ["node_modules", "dist", "build", ".next", ".turbo"]
}