-
Notifications
You must be signed in to change notification settings - Fork 0
/
turbo.json
58 lines (58 loc) · 1.28 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"$schema": "https://turborepo.org/schema.json",
"pipeline": {
"build:tsc": {
"dependsOn": ["^build:tsc"],
"inputs": ["src/**/*.ts", "tsconfig.json"],
"outputs": ["lib/**/*.d.ts"]
},
"build:types": {
"dependsOn": ["^build:types", "build:tsc"],
"inputs": ["lib/**/*.d.ts", "api-extractor.json"],
"outputs": ["etc/**/*", "dist/index.d.ts"]
},
"build:esm": {
"dependsOn": ["build:tsc"],
"inputs": ["lib/**/*.js"],
"outputs": ["dist/esm/**/*.js"]
},
"build": {
"dependsOn": ["^build", "build:esm", "build:types"],
"outputs": ["dist/**"]
},
"check": {
"inputs": ["**/*.ts", "**/*.js"],
"outputs": []
},
"clean": {
"cache": false
},
"clean:tsc": {
"cache": false
},
"clean:all": {
"dependsOn": ["clean", "clean:tsc"],
"cache": false
},
"lint": {
"inputs": ["**/*.ts", "**/*.js"],
"outputs": []
},
"prepare": {
"cache": false
},
"test": {
"dependsOn": [],
"inputs": ["src/**/*.ts", "jest.config.ts"],
"outputs": []
}
},
"globalDependencies": [
".eslintrc.js",
".prettierrc",
"api-extractor.json",
"tsconfig.json",
"tsconfig.base.json",
"scripts/**/*"
]
}