mirror of
https://github.com/pezkuwichain/bizinikiwi-connect.git
synced 2026-04-21 23:37:55 +00:00
31 lines
594 B
JSON
31 lines
594 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"globalDependencies": [
|
|
"tsconfig.base.json",
|
|
"tsconfig.build.json",
|
|
".prettierrc"
|
|
],
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"inputs": [
|
|
"$TURBO_DEFAULT$",
|
|
"tsconfig.json",
|
|
"tsconfig.build.json",
|
|
"tsup.config.ts",
|
|
"package.json"
|
|
],
|
|
"outputs": ["dist/**", ".turbo/**", ".tshy", ".tshy-build"]
|
|
},
|
|
"test": {
|
|
"dependsOn": ["build"]
|
|
},
|
|
"lint": {
|
|
"dependsOn": ["build"]
|
|
},
|
|
"//#lint": {
|
|
"dependsOn": []
|
|
}
|
|
}
|
|
}
|