diff --git a/docs/repo-docs/guides/single-package-workspaces.mdx b/docs/repo-docs/guides/single-package-workspaces.mdx index b67543c2a9827..74dddaf97a5fc 100644 --- a/docs/repo-docs/guides/single-package-workspaces.mdx +++ b/docs/repo-docs/guides/single-package-workspaces.mdx @@ -82,6 +82,7 @@ Then, create tasks in `turbo.json` to run these scripts in order: ```json title="./turbo.json" { + "$schema": "https://turbo.build/schema.json", "tasks": { "dev": { "dependsOn": ["db:seed"], @@ -123,6 +124,7 @@ You can create a configuration like this one: ```json title="turbo.json" { + "$schema": "https://turbo.build/schema.json", "tasks": { "lint": {}, "format": {}, @@ -145,6 +147,7 @@ For instance, a script for checking types using `tsc --noEmit` can be configured ```json title="./turbo.json" { + "$schema": "https://turbo.build/schema.json", "tasks": { "check-types": { "inputs": ["**/*.{ts,tsx}"]