-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathturbo.json
39 lines (39 loc) · 962 Bytes
/
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
38
39
{
"$schema": "https://turborepo.org/schema.json",
"pipeline": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"]
},
"dev": {
"cache": false
},
"test": {
"outputs": [],
"inputs": ["src/**/*.tsx", "src/**/*.ts", "test/**/*.ts", "test/**/*.tsx", "tsconfig.json"]
},
"test:update": {
"dependsOn": [],
"inputs": ["src/**/*.tsx", "src/**/*.ts", "test/**/*.ts", "test/**/*.tsx", "tsconfig.json"],
"cache": false
},
"test:watch": {
"dependsOn": [],
"inputs": ["src/**/*.tsx", "src/**/*.ts", "test/**/*.ts", "test/**/*.tsx", "tsconfig.json"],
"cache": false
},
"test:type": {
"outputs": [],
"inputs": ["src/**/*.tsx", "src/**/*.ts", "test/**/*.ts", "test/**/*.tsx", "tsconfig.json"]
},
"lint": {
"inputs": [
"eslint.config.js"
],
"outputs": []
},
"lint:fix": {
"outputs": []
}
}
}