tiptap/turbo.json
2025-01-06 09:35:00 +01:00

19 lines
416 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"ui": "tui",
"tasks": {
"build": {
"inputs": ["src/**", "tsup.config.ts", "../../tsconfig.json", "../../tsconfig.build.json", "package.json"],
"dependsOn": ["^build"],
"outputs": ["dist/**"]
},
"dev": {
"persistent": true,
"cache": false
},
"lint": {
"inputs": ["src/**", "../../.eslintrc.js"]
}
}
}