mirror of
https://github.com/lush2020/edgetunnel.git
synced 2026-03-24 00:48:39 +08:00
59 lines
1.5 KiB
JSON
59 lines
1.5 KiB
JSON
{
|
|
"name": "deno-vless",
|
|
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
|
"sourceRoot": "apps/deno-vless/src",
|
|
"projectType": "application",
|
|
"targets": {
|
|
"build": {
|
|
"executor": "@nrwl/vite:build",
|
|
"outputs": ["{options.outputPath}"],
|
|
"defaultConfiguration": "production",
|
|
"options": {
|
|
"outputPath": "apps/deno-vless/src/client"
|
|
},
|
|
"configurations": {
|
|
"development": {},
|
|
"production": {}
|
|
}
|
|
},
|
|
"serve": {
|
|
"executor": "@nrwl/vite:dev-server",
|
|
"defaultConfiguration": "development",
|
|
"options": {
|
|
"buildTarget": "deno-vless:build"
|
|
},
|
|
"configurations": {
|
|
"development": {
|
|
"buildTarget": "deno-vless:build:development",
|
|
"hmr": true
|
|
},
|
|
"production": {
|
|
"buildTarget": "deno-vless:build:production",
|
|
"hmr": false
|
|
}
|
|
}
|
|
},
|
|
"serve-deno": {
|
|
"executor": "nx:run-commands",
|
|
"options": {
|
|
"command": "deno run --allow-net --allow-read --allow-write --allow-env --watch apps/deno-vless/src/main.ts"
|
|
}
|
|
},
|
|
"test": {
|
|
"executor": "@nrwl/vite:test",
|
|
"outputs": ["{projectRoot}/coverage"],
|
|
"options": {
|
|
"passWithNoTests": true
|
|
}
|
|
},
|
|
"lint": {
|
|
"executor": "@nrwl/linter:eslint",
|
|
"outputs": ["{options.outputFile}"],
|
|
"options": {
|
|
"lintFilePatterns": ["apps/deno-vless/**/*.{ts,tsx,js,jsx}"]
|
|
}
|
|
}
|
|
},
|
|
"tags": []
|
|
}
|