AFFiNE/packages/infra/project.json

22 lines
454 B
JSON
Raw Normal View History

2023-06-30 20:17:31 +03:00
{
"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
}
}
}
}