Init base project files

This commit is contained in:
Sergei_Verbitski
2026-03-19 13:11:12 +03:00
parent 2cc375134a
commit 8575fd6db8
46 changed files with 11505 additions and 3 deletions

16
frontend/turbo.json Normal file
View File

@@ -0,0 +1,16 @@
{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"]
},
"lint": {
"dependsOn": ["^lint"]
},
"dev": {
"cache": false,
"persistent": true
}
}
}