From 5da9e651ce071623b69ab7ba98205b0c7764cf1b Mon Sep 17 00:00:00 2001 From: Yam Borodetsky Date: Sat, 8 Feb 2025 23:55:06 +0500 Subject: [PATCH] Update single-package-workspaces.mdx --- docs/repo-docs/guides/single-package-workspaces.mdx | 3 +++ 1 file changed, 3 insertions(+) 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}"]