Files

29 lines
563 B
JSON
Raw Permalink Normal View History

2024-04-27 10:10:50 +02:00
{
"$schema": "./node_modules/turbo/schema.json",
2024-12-01 10:07:35 +01:00
"globalDependencies": ["eslint.config.js"],
2024-06-04 20:57:53 +02:00
"tasks": {
"lint": {
"dependsOn": ["^build"]
},
2024-06-04 20:57:53 +02:00
"format": {},
2025-02-16 15:39:25 +01:00
"format:fix": {},
"typecheck": {
"dependsOn": ["^build"],
"outputLogs": "new-only"
},
2025-02-16 15:39:25 +01:00
"test": {
"dependsOn": ["^build"]
},
2024-06-21 18:52:58 +02:00
"test:watch": {},
2024-06-04 20:57:53 +02:00
"build": {
"outputs": ["dist/**"],
"dependsOn": ["^build"],
"outputLogs": "new-only"
2024-06-04 20:57:53 +02:00
},
"dev": {
"dependsOn": ["^build"],
"outputLogs": "new-only"
2024-06-04 20:57:53 +02:00
}
2024-04-27 10:40:14 +02:00
}
2024-04-27 10:10:50 +02:00
}