mirror of
https://github.com/lush2020/edgetunnel.git
synced 2026-03-21 00:42:43 +08:00
24 lines
535 B
JSON
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": []
|
|
}
|