Turbo Config Skill
Core workflow
- •Read the error output and identify whether it references root or package config.
- •If a package-level
turbo.jsonexists (inside a workspace package), ensure it includesextends: ["//"]to inherit the root configuration. - •Update deprecated keys: rename
pipelinetotasksfor Turbo 2+ configs.
Tip/lesson (package-level config)
If Turbo reports No "extends" key found for a package-level turbo.json, add:
code
extends: ["//"]
This is required for package configurations to inherit the root config.