-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproject.json
More file actions
43 lines (43 loc) · 1.18 KB
/
project.json
File metadata and controls
43 lines (43 loc) · 1.18 KB
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
{
"name": "angular-winbox",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"projectType": "library",
"sourceRoot": "packages/angular-winbox/src",
"prefix": "rbtech",
"targets": {
"build": {
"executor": "@nx/angular:package",
"outputs": ["{workspaceRoot}/dist/packages/angular-winbox"],
"options": {
"project": "packages/angular-winbox/ng-package.json"
},
"configurations": {
"production": {
"tsConfig": "packages/angular-winbox/tsconfig.lib.prod.json"
},
"development": {
"tsConfig": "packages/angular-winbox/tsconfig.lib.json"
}
},
"defaultConfiguration": "production"
},
"test": {
"executor": "@nx/jest:jest",
"outputs": ["{workspaceRoot}/coverage/packages/angular-winbox"],
"options": {
"jestConfig": "packages/angular-winbox/jest.config.js",
"passWithNoTests": true
}
},
"lint": {
"executor": "@nx/linter:eslint",
"options": {
"lintFilePatterns": [
"packages/angular-winbox/src/**/*.ts",
"packages/angular-winbox/src/**/*.html"
]
}
}
},
"tags": []
}