chore: initialize a new project

This commit is contained in:
PalmDevs
2023-11-24 22:54:41 +07:00
parent fbf0dee0a8
commit e4dbbfd68c
96 changed files with 418 additions and 8981 deletions

26
turbo.json Executable file
View File

@@ -0,0 +1,26 @@
{
"$schema": "https://turbo.build/schema.json",
"pipeline": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"],
"outputMode": "errors-only"
},
"watch": {
"dependsOn": ["^watch"],
"outputMode": "errors-only"
},
"format": {
"dependsOn": ["^format"],
"outputMode": "errors-only"
},
"lint": {
"dependsOn": ["^lint"],
"outputMode": "errors-only"
},
"lint:apply": {
"dependsOn": ["^lint:apply"],
"outputMode": "errors-only"
}
}
}