This commit is contained in:
Morten Olsen
2025-09-08 22:22:40 +02:00
commit 1b02bc8e81
30 changed files with 5459 additions and 0 deletions

37
turbo.json Normal file
View File

@@ -0,0 +1,37 @@
{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"build": {
"dependsOn": [
"^build"
],
"outputs": [
"dist/**",
"public/**"
],
"inputs": [
"src/**/*.tsx",
"src/**/*.ts",
"./tsconfig.*",
"../../pnpm-lock.yaml"
]
},
"test": {
"cache": false
},
"clean": {},
"dev": {
"dependsOn": [
"^build"
],
"cache": false,
"persistent": true
},
"demo": {
"dependsOn": [
"^build"
],
"persistent": true
}
}
}