pnpm workspaces, Turborepo, TypeScript strict, ESLint flat config, Prettier, Vitest, husky + lint-staged. Placeholder packages for all 16 packages + 2 apps + 2 plugins. Closes #1 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
27 lines
510 B
JSON
27 lines
510 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"ui": "tui",
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"inputs": ["$TURBO_DEFAULT$", ".env*"],
|
|
"outputs": ["dist/**"]
|
|
},
|
|
"lint": {
|
|
"dependsOn": ["^lint"]
|
|
},
|
|
"typecheck": {
|
|
"dependsOn": ["^typecheck"]
|
|
},
|
|
"test": {
|
|
"dependsOn": ["^build"],
|
|
"inputs": ["$TURBO_DEFAULT$"],
|
|
"outputs": ["coverage/**"]
|
|
},
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true
|
|
}
|
|
}
|
|
}
|