-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Expand file tree
/
Copy pathdesign-diff.config.json
More file actions
104 lines (104 loc) · 2.82 KB
/
Copy pathdesign-diff.config.json
File metadata and controls
104 lines (104 loc) · 2.82 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
{
"sourceRoots": ["apps/", "packages/"],
"exclude": [
"(?:^|/)(?:node_modules|__tests__|__fixtures__|fixtures|test-results|\\.source|dist|build)/",
"\\.(?:test|spec)\\.[cm]?[jt]sx?$",
"(?:^|/)next-env\\.d\\.ts$"
],
"renderedMarkdown": ["apps/docs/content/", "apps/sim/content/"],
"aliases": [
{
"from": "apps/sim/",
"prefix": "@/",
"target": "apps/sim/"
},
{
"from": "apps/docs/",
"prefix": "@/",
"target": "apps/docs/"
}
],
"themes": [
{
"roots": ["apps/sim/", "packages/emcn/", "packages/workflow-renderer/"],
"path": "apps/sim/app/_styles/globals.css"
},
{
"roots": ["apps/docs/", "packages/emcn/", "packages/workflow-renderer/"],
"path": "apps/docs/app/global.css"
}
],
"classFunctions": ["cn", "clsx", "classNames", "twMerge"],
"variantFunctions": ["cva"],
"nativeAppearance": [
"backgroundColor",
"titleBarStyle",
"titleBarOverlay",
"trafficLightPosition",
"vibrancy",
"visualEffectState",
"transparent",
"opacity",
"frame",
"roundedCorners",
"backgroundMaterial",
"width",
"height",
"minWidth",
"minHeight",
"maxWidth",
"maxHeight",
"resizable",
"fullscreen",
"autoHideMenuBar",
"icon"
],
"infrastructure": [
"(?:^|/)(?:tailwind|postcss|next|vite|electron-vite|source)\\.config\\.",
"(?:^|/)mdx-components\\.",
"(?:^|/)lib/postcss/",
"(?:^|/)lib/cn\\.ts$",
"(?:^|/)tsconfig[^/]*\\.json$"
],
"renderingDependencies": "^(?:react(?:-dom)?|next|tailwindcss|tailwind-merge|clsx|class-variance-authority|postcss|electron|framer-motion|motion|tw-animate-css|@tailwindcss/|@radix-ui/|@react-email/|fumadocs|@mdx-js/|remark-|rehype-|lucide)",
"limits": {
"fileBytes": 2097152,
"totalBytes": 268435456,
"resolutionDepth": 24,
"resolutionSteps": 5000
},
"nativeRendering": [
"apps/desktop/src/main/terminal-themes.ts",
"apps/desktop/src/main/context-menu.ts",
"apps/desktop/src/main/tray.ts"
],
"classModules": [
"clsx",
"classnames",
"tailwind-merge",
"@sim/emcn",
"@sim/emcn/lib/cn",
"@/lib/utils",
"@/lib/cn"
],
"variantModules": ["class-variance-authority"],
"mergeFontSizes": ["micro", "caption", "small", "md"],
"fileInputs": [
{
"list": "apps/docs/lib/openapi-specs.ts",
"export": "OPENAPI_SPEC_FILES",
"root": "apps/docs",
"renderer": "apps/docs/lib/openapi.ts"
}
],
"environmentAdapters": [
{
"module": "apps/sim/lib/core/config/env-capabilities.server.ts",
"export": "wireServerFallback",
"environmentModule": "apps/sim/lib/core/config/env.ts",
"environmentExport": "env",
"implementationModule": "apps/sim/lib/core/config/env-capabilities.ts",
"implementationExport": "wireFallback"
}
]
}