node-config/turbo.json

16 lines
358 B
JSON
Raw Normal View History

2023-06-17 07:11:31 +00:00
{
"$schema": "https://turbo.build/schema.json",
"pipeline": {
"build": {
"cache": true,
"outputs": ["**/dist"]
},
"lint": {
"cache": true,
"inputs": ["**/*.js", "**/*.jsx", "**/*.ts", "**/*.tsx"],
"outputs": ["**/.eslintcache"]
},
"test": {}
}
2023-06-17 07:11:31 +00:00
}