Skip to content

Commit

Permalink
chore: format turbo.json
Browse files Browse the repository at this point in the history
  • Loading branch information
tiesen243 committed Jan 28, 2025
1 parent 8e64123 commit 39a1bfe
Show file tree
Hide file tree
Showing 2 changed files with 62 additions and 19 deletions.
15 changes: 10 additions & 5 deletions tooling/typescript/base.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,26 +6,31 @@
"esModuleInterop": true,
"skipLibCheck": true,
"target": "ES2022",
"lib": ["ES2022"],
"lib": [
"ES2022"
],
"allowJs": true,
"resolveJsonModule": true,
"moduleDetection": "force",
"isolatedModules": true,

/** Keep TSC performant in monorepos */
"incremental": true,
"disableSourceOfProjectReferenceRedirect": true,
"tsBuildInfoFile": "${configDir}/.cache/tsbuildinfo.json",

/** Strictness */
"strict": true,
"noUncheckedIndexedAccess": true,
"checkJs": true,

/** Transpile using Bundler (not tsc) */
"module": "Preserve",
"moduleResolution": "Bundler",
"noEmit": true
},
"exclude": ["node_modules", "build", "dist", ".next", ".expo"]
"exclude": [
"node_modules",
"build",
"dist",
".next",
".expo"
]
}
66 changes: 52 additions & 14 deletions turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,28 +3,66 @@
"ui": "tui",
"tasks": {
"build": {
"dependsOn": ["^gnr", "^build"],
"outputs": [".cache/tsbuildinfo.json", "dist/**"]
"dependsOn": [
"^gnr",
"^build"
],
"outputs": [
".cache/tsbuildinfo.json",
"dist/**"
]
},
"clean": {
"cache": false
},
"//#clean": {
"cache": false
},
"dev": {
"dependsOn": [
"^dev"
],
"cache": false,
"persistent": false
},
"clean": { "cache": false },
"//#clean": { "cache": false },
"dev": { "dependsOn": ["^dev"], "cache": false, "persistent": false },
"format": {
"outputs": [".cache/.prettiercache"],
"outputs": [
".cache/.prettiercache"
],
"outputLogs": "new-only"
},
"lint": {
"dependsOn": ["^lint"],
"outputs": [".cache/.eslintcache"]
"dependsOn": [
"^lint"
],
"outputs": [
".cache/.eslintcache"
]
},
"typecheck": {
"dependsOn": ["^typecheck"],
"outputs": [".cache/tsbuildinfo.json"]
"dependsOn": [
"^typecheck"
],
"outputs": [
".cache/tsbuildinfo.json"
]
},
"push": {
"cache": false,
"interactive": true
},
"studio": {
"cache": false,
"persistent": false
},
"gnr": {
"cache": false,
"interactive": false
},
"push": { "cache": false, "interactive": true },
"studio": { "cache": false, "persistent": false },
"gnr": { "cache": false, "interactive": false },
"ui-add": { "cache": false, "interactive": true }
"ui-add": {
"cache": false,
"interactive": true
}
},
"globalEnv": [
"DATABASE_URL",
Expand Down

0 comments on commit 39a1bfe

Please sign in to comment.