-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
32 lines (32 loc) · 1.35 KB
/
Copy pathtsconfig.json
File metadata and controls
32 lines (32 loc) · 1.35 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
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "Bundler",
"lib": ["ES2022", "DOM"],
"strict": true,
"declaration": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"baseUrl": ".",
"paths": {
"@image-sdk/core": ["packages/core/src/index.ts"],
"@image-sdk/flux": ["packages/providers/flux/src/index.ts"],
"@image-sdk/mock": ["packages/providers/mock/src/index.ts"],
"@image-sdk/stability": ["packages/providers/stability/src/index.ts"],
"@image-sdk/openai": ["packages/providers/openai/src/index.ts"],
"@image-sdk/recraft": ["packages/providers/recraft/src/index.ts"],
"@image-sdk/ideogram": ["packages/providers/ideogram/src/index.ts"],
"@image-sdk/replicate": ["packages/providers/replicate/src/index.ts"],
"@image-sdk/fal": ["packages/providers/fal/src/index.ts"],
"@image-sdk/google": ["packages/providers/google/src/index.ts"],
"@image-sdk/production": ["packages/production/src/index.ts"],
"@image-sdk/storage-s3": ["packages/storage-s3/src/index.ts"],
"@image-sdk/react": ["packages/react/src/index.ts"],
"@image-sdk/mcp": ["packages/mcp/src/index.ts"],
"image-sdk": ["packages/sdk/src/index.ts"]
}
},
"include": ["packages/**/*.ts", "vitest.config.ts"]
}