mirror of
https://github.com/ueberdosis/tiptap.git
synced 2025-06-07 09:25:29 +08:00
19 lines
416 B
JSON
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"]
|
|
}
|
|
}
|
|
}
|