chore: implement basic build system

This commit is contained in:
2025-06-24 19:32:00 +02:00
parent e603b4972a
commit 8b3c059210
16 changed files with 1266 additions and 0 deletions

18
turbo.json Normal file
View File

@@ -0,0 +1,18 @@
{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", "tsconfig.tsbuildinfo"]
}
},
"globalDependencies": [
".eslintrc.js",
".eslintignore",
".lintstagedrc.js",
".prettierrc.yaml",
"tsconfig.base.json",
"tsconfig.build.json",
"tsconfig.json"
]
}