AT-based link agregator. Mirror of https://github.com/likeandscribe/frontpage
1{
2 "$schema": "https://turbo.build/schema.json",
3 "ui": "tui",
4 "tasks": {
5 "build": {
6 "dependsOn": ["^build"]
7 },
8 "dev": {
9 "persistent": true,
10 "dependsOn": ["^build"]
11 },
12 "type-check": {
13 "dependsOn": ["^build", "typegen"]
14 },
15 "typegen": {
16 "dependsOn": ["^build"],
17 "outputs": [".next/types/**"]
18 },
19 "lint": {
20 "dependsOn": ["^build", "typegen"],
21 "outputs": ["eslint_report.json"]
22 },
23 "test": {
24 "dependsOn": ["^build"]
25 }
26 },
27 "globalEnv": ["CI", "NODE_ENV"]
28}