-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathproject.json
More file actions
28 lines (28 loc) · 840 Bytes
/
project.json
File metadata and controls
28 lines (28 loc) · 840 Bytes
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
{
"name": "beeq-react",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "packages/beeq-react/src",
"projectType": "library",
"tags": ["wrapper", "react", "publishable"],
"implicitDependencies": ["beeq"],
"targets": {
"build": {
"executor": "@nx/js:tsc",
"options": {
"clean": true,
"main": "packages/beeq-react/src/index.ts",
"assets": ["packages/beeq-react/README.md"],
"outputPath": "dist/beeq-react",
"project": "packages/beeq-react/package.json",
"tsConfig": "packages/beeq-react/tsconfig.lib.json"
},
"dependsOn": [{ "dependencies": true, "target": "build" }]
},
"check": {
"executor": "nx:run-commands",
"options": {
"command": "pnpm exec biome check {projectRoot}"
}
}
}
}