Files
2025-04-16 15:47:30 +07:00

31 lines
555 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["**/.env.*", "./tsconfig.json"],
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": [
"dist/**",
"lib/**",
".next/**",
"!.next/cache/**",
"*/dist/**"
]
},
"lint": {
"dependsOn": ["^build"]
},
"test": {
"dependsOn": ["^build"]
},
"circular-check": {},
"e2e": {
"dependsOn": ["^build"]
},
"dev": {
"cache": false,
"persistent": true
}
}
}