mirror of
https://github.com/status-im/wakuconnect-chat-sdk.git
synced 2025-01-12 13:14:40 +00:00
680ce2f79b
* fix example hot module replacement * add turbo * migrate to vite * use turbo for running scripts * migrate testing to vitest * set yarn in settings.json * set noEmit in base tsconfig * update yarn.lock * move protos to src * remove relative paths from status-js * remove unused files * update declaration dir * use vite-node as a debugging runtime * fix test * unify tests * fix test case typo
28 lines
465 B
JSON
28 lines
465 B
JSON
{
|
|
"$schema": "https://turborepo.org/schema.json",
|
|
"baseBranch": "origin/main",
|
|
"pipeline": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist/**"]
|
|
},
|
|
"dev": {
|
|
"cache": false
|
|
},
|
|
"lint": {
|
|
"outputs": []
|
|
},
|
|
"check": {
|
|
"outputs": []
|
|
},
|
|
"test": {
|
|
"outputs": [],
|
|
"dependsOn": []
|
|
},
|
|
"clean": {
|
|
"cache": false
|
|
}
|
|
},
|
|
"globalDependencies": ["tsconfig.base.json"]
|
|
}
|