diff --git a/.vscode/settings.json b/.vscode/settings.json index 2ecd90a4..782ddc20 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -15,5 +15,8 @@ }, "[yaml]": { "editor.defaultFormatter": "redhat.vscode-yaml" + }, + "[json]": { + "editor.defaultFormatter": "biomejs.biome" } -} +} \ No newline at end of file diff --git a/turbo.json b/turbo.json index d10d2034..e93ae017 100644 --- a/turbo.json +++ b/turbo.json @@ -2,20 +2,16 @@ "$schema": "https://turbo.build/schema.json", "pipeline": { "build": { - "outputs": [ - "dist/**" - ], + "outputs": ["dist/**"], "cache": true }, "test": {}, "start": { - "dependsOn": [ - "build" - ] + "dependsOn": ["build"] }, "dev": {}, "typecheck": {}, "web:build": {}, "web:start": {} } -} \ No newline at end of file +}