fork of hey-api/openapi-ts because I need some additional things
1{
2 "$schema": "./node_modules/turbo/schema.json",
3 "tasks": {
4 "build": {
5 "cache": false,
6 "dependsOn": ["^build"],
7 "outputs": [
8 ".next/**",
9 "!.next/cache/**",
10 ".output/**",
11 ".svelte-kit/**",
12 ".vitepress/dist/**",
13 "dist/**"
14 ]
15 },
16 "dev": {
17 "cache": false,
18 "persistent": true
19 },
20 "test": {
21 "cache": false,
22 "dependsOn": []
23 },
24 "test:coverage": {
25 "cache": false,
26 "dependsOn": []
27 },
28 "test:update": {
29 "cache": false,
30 "dependsOn": []
31 },
32 "test:watch": {
33 "cache": false,
34 "dependsOn": []
35 },
36 "typecheck": {
37 "cache": false,
38 "dependsOn": []
39 }
40 }
41}