-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathproject.json
45 lines (45 loc) · 1.19 KB
/
project.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
{
"name": "static",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"projectType": "application",
"sourceRoot": "apps/static/src",
"tags": [],
"targets": {
"build": {
"executor": "@nx/webpack:webpack",
"outputs": ["{options.outputPath}"],
"defaultConfiguration": "production",
"options": {
"outputPath": "dist/apps/static",
"compiler": "babel",
"index": "apps/static/src/index.html",
"generateIndexHtml": false,
"baseHref": "/",
"main": "apps/static/src/main.ts",
"tsConfig": "apps/static/tsconfig.app.json",
"assets": ["apps/static/src/favicon.ico", "apps/static/src/assets"],
"scripts": []
},
"configurations": {
"production": {
"optimization": false,
"outputHashing": "none",
"sourceMap": false,
"namedChunks": false,
"vendorChunk": false
}
}
},
"serve": {
"executor": "@nx/webpack:dev-server",
"options": {
"buildTarget": "static:build"
},
"configurations": {
"production": {
"buildTarget": "static:build:production"
}
}
}
}
}