docs: updates

This commit is contained in:
Morten Olsen
2023-01-30 22:21:19 +01:00
parent 7ae92c5420
commit a1fc380c55
19 changed files with 8003 additions and 10456 deletions

23
turbo.json Normal file
View File

@@ -0,0 +1,23 @@
{
"$schema": "https://turbo.build/schema.json",
"baseBranch": "origin/main",
"pipeline": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"],
"inputs": ["src/**/*.tsx", "src/**/*.ts", "./tsconfig.*.json"]
},
"test": {
"cache": false
},
"cli": {
"dependsOn": ["^build"],
"cache": false
},
"dev": {
"cache": false
}
},
"globalDependencies": ["tsconfig.json"]
}