-
Notifications
You must be signed in to change notification settings - Fork 74
/
turbo.json
37 lines (37 loc) · 1.31 KB
/
turbo.json
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
{
"$schema": "https://turbo.build/schema.json",
"pipeline": {
"build": {
"dependsOn": ["^build"],
"inputs": ["tsconfig.json", "**/build.tsconfig.json", "**/rollup.config.ts", "packages/**/*.{js,json,ts}"],
"outputs": ["packages/**/dist/**"]
},
"//#_build": {
"inputs": ["tsconfig.json", "**/build.tsconfig.json", "**/rollup.config.ts", "packages/**/*.{js,json,ts}"]
},
"//#_test": {
"dependsOn": ["_build"],
"inputs": ["jest.config.ts", "packages/**/*.{js,ts}"]
},
"//#format:prettier": {
"inputs": [
".prettierrc.json",
".prettierignore",
"*.{js,ts,yml,yaml,json,md}",
"{.github,packages,scripts,types}/**/*.{js,ts,yml,yaml,json,md}"
]
},
"//#format:prettier:write": {
"inputs": [
".prettierrc.json",
".prettierignore",
"*.{js,ts,yml,yaml,json,md}",
"{.github,packages,scripts,types}/**/*.{js,ts,yml,yaml,json,md}"
]
},
"//#lint:eslint": {
"dependsOn": ["_build"],
"inputs": [".eslintrc.json", ".eslintignore", "{packages,scripts,types}/**/*.{js,ts}"]
}
}
}