这是indexloc提供的服务,不要输入任何密码
Skip to content

docs(repo): add JSON Schema to turbo.json ref in single-package-workspaces.mdx #9926

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 14, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions docs/repo-docs/guides/single-package-workspaces.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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"],
Expand Down Expand Up @@ -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": {},
Expand All @@ -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}"]
Expand Down
Loading