2
0

turbo.json 570 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "$schema": "https://turborepo.org/schema.json",
  3. "pipeline": {
  4. "lint": {
  5. "inputs": [
  6. "./*.{ts,js,cjs}",
  7. "./{src,scripts,config,tests}/**"
  8. ]
  9. },
  10. "build": {
  11. "dependsOn": ["^build"],
  12. "inputs": [
  13. "./*.{ts,js,cjs,json}",
  14. "./{src,scripts,config}/**"
  15. ],
  16. "outputs": [
  17. "./dist/**",
  18. "!./dist/.tsout",
  19. "!./dist/tsconfig.tsbuildinfo",
  20. "./tests/dist/**"
  21. ]
  22. },
  23. "test": {
  24. "dependsOn": ["build"]
  25. },
  26. "clean": {
  27. "cache": false
  28. }
  29. }
  30. }