1
1
mirror of https://github.com/ARK-Unity/ark-unity.git synced 2024-07-12 23:40:12 +02:00
ark-unity/turbo.json

25 lines
535 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"globalEnv": [],
"globalDependencies": [],
"pipeline": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", "build/**", ".next/**", "!.next/cache/**"],
"inputs": ["**/*.tsx", "**/*.ts"]
},
"test": {
"dependsOn": ["^build"],
"inputs": ["**/*.tsx", "**/*.ts"]
},
"lint": {
"dependsOn": ["^build"],
"inputs": ["**/*.tsx", "**/*.ts"]
},
"dev": {
"cache": false,
"persistent": true
}
}
}