tiptap/turbo.json

20 lines
367 B
JSON
Raw Permalink Normal View History

2024-07-04 00:02:34 +08:00
{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"build": {
"inputs": [
"src/**",
"rollup.config.js",
"../../tsconfig.json",
"../../shared/rollup-config/index.js"
],
2024-07-04 00:02:34 +08:00
"dependsOn": ["^build"],
"outputs": ["dist/**"]
},
"dev": {
"persistent": true,
"cache": false
}
}
}