21 lines
389 B
JSON
21 lines
389 B
JSON
{
|
|
"$schema": "https://turborepo.com/schema.json",
|
|
"ui": "tui",
|
|
"tasks": {
|
|
"lint": {
|
|
"with": ["//#lint:biome", "typecheck"]
|
|
},
|
|
"lint:check": {
|
|
"with": ["//#lint:biome:check", "typecheck"]
|
|
},
|
|
"typecheck": {},
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist/**"]
|
|
},
|
|
|
|
"//#lint:biome": {},
|
|
"//#lint:biome:check": {}
|
|
}
|
|
}
|