link-stack/turbo.json

23 lines
556 B
JSON
Raw Normal View History

2023-02-13 13:46:56 +00:00
{
"$schema": "https://turbo.build/schema.json",
2024-04-30 13:28:52 +02:00
"globalDotEnv": [".env"],
2023-02-13 13:46:56 +00:00
"pipeline": {
2023-02-13 20:04:35 +00:00
"dev": {
"dependsOn": ["^build"],
2023-02-13 20:04:35 +00:00
"cache": false,
"persistent": true
},
2023-02-13 13:46:56 +00:00
"build": {
2023-05-25 12:37:14 +00:00
"dependsOn": ["^build"],
2024-03-16 23:11:48 +01:00
"outputs": [".next/**", "!.next/cache/**", "build/**", "dist/**"]
2023-02-13 13:46:56 +00:00
},
"test": {
2023-05-25 12:37:14 +00:00
"dependsOn": ["build"],
"inputs": ["src/**/*.tsx", "src/**/*.ts", "test/**/*.ts", "test/**/*.tsx"]
2023-03-13 16:40:04 +00:00
},
"lint": {
2023-05-25 12:37:14 +00:00
"inputs": ["src/**/*.tsx", "src/**/*.ts", "test/**/*.ts", "test/**/*.tsx"]
2023-02-13 13:46:56 +00:00
}
}
2023-05-25 12:37:14 +00:00
}