feat(task2): add root turborepo and npm workspaces configuration

This commit is contained in:
2026-07-02 15:16:07 +08:00
parent 9bbcb20b51
commit ee2cad0941
4 changed files with 15130 additions and 6 deletions

11
turbo.json Normal file
View File

@@ -0,0 +1,11 @@
{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"build": { "dependsOn": ["^build"], "outputs": ["dist/**"] },
"dev": { "cache": false, "persistent": true },
"lint": {},
"test": {},
"format": { "cache": false },
"typecheck": { "dependsOn": ["^build"] }
}
}