-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathproject.json
More file actions
50 lines (50 loc) · 1.28 KB
/
project.json
File metadata and controls
50 lines (50 loc) · 1.28 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
44
45
46
47
48
49
50
{
"name": "am-mock-api",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "e2e/am-mock-api/src",
"projectType": "application",
"tags": ["scope:e2e"],
"targets": {
"build": {
"executor": "@nx/js:tsc",
"outputs": ["{projectRoot}/dist"],
"options": {
"outputPath": "e2e/am-mock-api/dist",
"main": "e2e/am-mock-api/src/index.js",
"clean": true,
"tsConfig": "e2e/am-mock-api/tsconfig.app.json",
"assets": ["e2e/am-mock-api/src/assets"]
},
"configurations": {
"development": {
"watch": true
},
"production": {
"optimization": true,
"extractLicenses": true,
"inspect": false,
"fileReplacements": [
{
"replace": "e2e/am-mock-api/src/environments/environment.ts",
"with": "e2e/am-mock-api/src/environments/environment.prod.ts"
}
]
}
}
},
"serve": {
"executor": "@nx/js:node",
"outputs": ["{projectRoot}/dist"],
"options": {
"buildTarget": "am-mock-api:build"
}
},
"lint": {
"options": {
"fix": true,
"ignore-path": ".eslintignore",
"args": ["**/*.ts"]
}
}
}
}