Files
vue-flow/turbo.json
bcakmakoglu c289e7e3cc docs: update typedoc to use src/index.ts as entry
# What's changed?

* use src/index.ts as entry for typedocs instead of dist/index.d.ts (otherwise crashes with new vue-tsc version)
* update tsconfigs
* update turbo config and skip building d.ts files for typedocs
2022-06-10 15:54:40 +02:00

40 lines
681 B
JSON

{
"$schema": "https://turborepo.org/schema.json",
"baseBranch": "origin/master",
"pipeline": {
"build": {
"dependsOn": ["^build", "types", "theme"],
"outputs": ["dist/**"]
},
"types": {
"dependsOn": ["^build"],
"outputs": ["dist/**"]
},
"typedoc": {
"outputs": ["typedocs/**"]
},
"theme": {
"outputs": ["dist/**"]
},
"test": {
"dependsOn": ["^build"],
"outputs": []
},
"lint": {
"outputs": []
},
"dev": {
"dependsOn": ["^build"],
"cache": false
},
"release": {
"dependsOn": ["^build"],
"cache": false,
"outputs": []
}
}
}