mirror of
https://github.com/farcasterxyz/hub-monorepo.git
synced 2026-01-25 13:08:02 -05:00
* chore: add rome config files * chore: add rome into configs and ci * chore: remove eslint annotations * chore: update annotations for rome ignores * chore: remove prettier
35 lines
630 B
JSON
35 lines
630 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"pipeline": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["build/**", "dist/**"]
|
|
},
|
|
"clean": {
|
|
"cache": false
|
|
},
|
|
"dev": {
|
|
"cache": false
|
|
},
|
|
"lint": {
|
|
"outputs": []
|
|
},
|
|
"lint:ci": {
|
|
"outputs": []
|
|
},
|
|
"protoc": {
|
|
"outputs": []
|
|
},
|
|
"test": {
|
|
"dependsOn": ["lint", "build"],
|
|
"inputs": ["src/**/*.ts"],
|
|
"outputs": []
|
|
},
|
|
"test:ci": {
|
|
"dependsOn": ["lint:ci", "build"],
|
|
"outputs": ["coverage/**"]
|
|
}
|
|
},
|
|
"globalDependencies": ["tsconfig.json"]
|
|
}
|