Files
2025-02-16 15:39:25 +01:00

29 lines
563 B
JSON

{
"$schema": "./node_modules/turbo/schema.json",
"globalDependencies": ["eslint.config.js"],
"tasks": {
"lint": {
"dependsOn": ["^build"]
},
"format": {},
"format:fix": {},
"typecheck": {
"dependsOn": ["^build"],
"outputLogs": "new-only"
},
"test": {
"dependsOn": ["^build"]
},
"test:watch": {},
"build": {
"outputs": ["dist/**"],
"dependsOn": ["^build"],
"outputLogs": "new-only"
},
"dev": {
"dependsOn": ["^build"],
"outputLogs": "new-only"
}
}
}