AFFiNE/packages/infra/project.json
2023-07-01 01:17:31 +08:00

22 lines
454 B
JSON

{
"name": "infra",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"projectType": "library",
"sourceRoot": "packages/infra/src",
"targets": {
"build": {
"executor": "@nx/vite:build",
"options": {
"outputPath": "packages/infra/dist"
}
},
"serve": {
"executor": "@nx/vite:build",
"options": {
"outputPath": "packages/infra/dist",
"watch": true
}
}
}
}