node-config/turbo.json

16 lines
358 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"pipeline": {
"build": {
"cache": true,
"outputs": ["**/dist"]
},
"lint": {
"cache": true,
"inputs": ["**/*.js", "**/*.jsx", "**/*.ts", "**/*.tsx"],
"outputs": ["**/.eslintcache"]
},
"test": {}
}
}