You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
1.0 KiB

  1. {
  2. "$schema": "https://turbo.build/schema.json",
  3. "globalDependencies": [
  4. "pnpm-lock.yaml",
  5. "**/.env.*local",
  6. "**/tsconfig*.json",
  7. "internal/node-utils/*.json",
  8. "internal/node-utils/src/**/*.ts",
  9. "internal/tailwind-config/src/**/*.ts",
  10. "internal/vite-config/*.json",
  11. "internal/vite-config/src/**/*.ts",
  12. "scripts/*/src/**/*.ts",
  13. "scripts/*/src/**/*.json"
  14. ],
  15. "globalEnv": ["NODE_ENV"],
  16. "tasks": {
  17. "build": {
  18. "dependsOn": ["^build"],
  19. "outputs": ["dist/**", "dist.zip"]
  20. },
  21. "preview": {
  22. "dependsOn": ["^build"],
  23. "outputs": ["dist/**"]
  24. },
  25. "build:analyze": {
  26. "dependsOn": ["^build"],
  27. "outputs": ["dist/**"]
  28. },
  29. "@vben/backend-mock#build": {
  30. "dependsOn": ["^build"],
  31. "outputs": [".nitro/**", ".output/**"]
  32. },
  33. "stub": {
  34. "cache": false
  35. },
  36. "dev": {
  37. "dependsOn": [],
  38. "outputs": [],
  39. "cache": false,
  40. "persistent": true
  41. },
  42. "typecheck": {
  43. "outputs": []
  44. }
  45. }
  46. }