-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathproject.json
47 lines (47 loc) · 1.22 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
46
47
{
"name": "timebar",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "libs/timebar/src",
"projectType": "library",
"targets": {
"dist": {
"executor": "@nx/rollup:rollup",
"outputs": ["{options.outputPath}"],
"options": {
"entryFile": "libs/timebar/src/index.ts",
"extractCss": true,
"assets": [
{
"glob": "libs/timebar/src/timebar-settings.css",
"input": ".",
"output": "."
},
{
"glob": "libs/timebar/types",
"input": ".",
"output": "."
},
{
"glob": "libs/timebar/index.d.ts",
"input": ".",
"output": "."
}
],
"format": ["esm", "cjs"],
"main": "libs/timebar/src/index.ts",
"outputPath": "dist/libs/timebar",
"project": "libs/timebar/package.json",
"rollupConfig": "libs/timebar/rollup.config.js",
"tsConfig": "libs/timebar/tsconfig.lib.json"
}
},
"publish": {
"executor": "@nx/js:release-publish",
"dependsOn": ["dist"],
"options": {
"packageRoot": "dist/libs/timebar"
}
}
},
"tags": []
}