turbo.json 223 B

12345678910111213
  1. {
  2. "$schema": "https://turborepo.com/schema.json",
  3. "tasks": {
  4. "typecheck": {},
  5. "build": {
  6. "dependsOn": ["^build"],
  7. "outputs": ["dist/**"]
  8. },
  9. "test": {
  10. "dependsOn": ["^test"]
  11. }
  12. }
  13. }