feat: initial commit for bizinikiwi-connect with clean CI

This commit is contained in:
2026-01-12 18:32:02 +03:00
commit c6713b3a05
108 changed files with 7279 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
{
"$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": []
}
}
}