forked from danny-avila/LibreChat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathturbo.json
More file actions
33 lines (33 loc) · 873 Bytes
/
turbo.json
File metadata and controls
33 lines (33 loc) · 873 Bytes
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
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["package-lock.json"],
"tasks": {
"build": {
"dependsOn": ["^build"],
"inputs": [
"src/**",
"!src/**/__tests__/**",
"!src/**/__mocks__/**",
"!src/**/*.test.*",
"!src/**/*.spec.*",
"scripts/**",
"rollup.config.js",
"server-rollup.config.js",
"tsconfig.json",
"tsconfig.build.json",
"vite.config.ts",
"index.html",
"postcss.config.*",
"tailwind.config.*",
"package.json"
],
"outputs": ["dist/**"]
},
"@librechat/data-schemas#build": {
"dependsOn": ["^build", "librechat-data-provider#build"]
},
"@librechat/api#build": {
"dependsOn": ["^build", "librechat-data-provider#build", "@librechat/data-schemas#build"]
}
}
}