Changes: - Add .forgejo/workflows/ci.yml with lint/typecheck/test jobs - Fix pnpm lockfile supply-chain policy violations - Fix biome lint/format errors across all packages - Add minimal test suites to all vitest packages - Fix TypeScript errors (Next.js 15 params Promise, non-null assertions) - Ignore *.tsbuildinfo build artifacts - Add .npmrc with resolution-mode=lowest-direct
19 lines
354 B
JSON
19 lines
354 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"ui": "stream",
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": [".next/**", "!.next/cache/**", "dist/**"]
|
|
},
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"lint": {},
|
|
"typecheck": {
|
|
"dependsOn": ["^build"]
|
|
},
|
|
"test": {}
|
|
}
|
|
}
|