-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathworkspace.json
78 lines (78 loc) · 1.98 KB
/
workspace.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"version": 1,
"projects": {
"tinkerhub-website": {
"root": "apps/tinkerhub-website",
"sourceRoot": "apps/tinkerhub-website",
"projectType": "application",
"schematics": {},
"architect": {
"build": {
"builder": "@nrwl/next:build",
"options": {
"root": "apps/tinkerhub-website",
"outputPath": "dist/apps/tinkerhub-website"
},
"configurations": {
"production": {}
}
},
"serve": {
"builder": "@nrwl/next:server",
"options": {
"buildTarget": "tinkerhub-website:build",
"dev": true
},
"configurations": {
"production": {
"buildTarget": "tinkerhub-website:build:production",
"dev": false
}
}
},
"export": {
"builder": "@nrwl/next:export",
"options": {
"buildTarget": "tinkerhub-website:build:production"
}
},
"lint": {
"builder": "@nrwl/linter:lint",
"options": {
"linter": "eslint",
"tsConfig": [
"apps/tinkerhub-website/tsconfig.json",
"apps/tinkerhub-website/tsconfig.spec.json"
],
"exclude": ["**/node_modules/**", "!apps/tinkerhub-website/**/*"]
}
},
"test": {
"builder": "@nrwl/jest:jest",
"options": {
"jestConfig": "apps/tinkerhub-website/jest.config.js",
"tsConfig": "apps/tinkerhub-website/tsconfig.spec.json",
"passWithNoTests": true
}
}
}
}
},
"cli": {
"defaultCollection": "@nrwl/next"
},
"schematics": {
"@nrwl/react": {
"application": {
"babel": true
}
},
"@nrwl/next": {
"application": {
"style": "styled-components",
"linter": "eslint"
}
}
},
"defaultProject": "tinkerhub-website"
}