chore: Extract lint config

This commit is contained in:
vben
2023-04-04 16:55:34 +08:00
parent 84a5fc1256
commit ba2415c3b4
130 changed files with 6456 additions and 2916 deletions

17
turbo.json Normal file
View File

@@ -0,0 +1,17 @@
{
"$schema": "https://turborepo.org/schema.json",
"pipeline": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"]
},
"stub": {},
"clean": {
"cache": false
},
"dev": {
"cache": false,
"persistent": true
}
}
}