Files
hub-monorepo/turbo.json
Varun Srinivasan 4c38067c15 chore: switch from eslint/prettier to rome (#1074)
* 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
2023-07-04 19:09:15 -07:00

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"]
}