Files
edgetunnel/apps/cf-worker/project.json
2022-12-18 02:24:04 +08:00

24 lines
535 B
JSON

{
"name": "cf-worker",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "apps/cf-worker/src",
"projectType": "application",
"targets": {
"serve": {
"executor": "nx:run-commands",
"options": {
"command": "wrangler dev",
"cwd": "apps/cf-worker"
}
},
"lint": {
"executor": "@nrwl/linter:eslint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["apps/cf-worker/**/*.ts"]
}
}
},
"tags": []
}