Skip to content

Commit

Permalink
Updating
Browse files Browse the repository at this point in the history
  • Loading branch information
iamhectorsosa committed Nov 20, 2023
1 parent e26037f commit 89d6071
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 25 deletions.
9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,13 @@
"version": "1.0.0",
"description": "",
"scripts": {
"build": "turbo run build:tailwind build --filter=./packages/\\*",
"clean": "turbo run clean",
"lint": "tsc"
"build": "turbo run build:tailwind build --filter=./packages/\\*"
},
"keywords": [],
"author": "",
"author": {
"name": "Hector Sosa",
"url": "https://hectorsosa.me"
},
"devDependencies": {
"@types/node": "^20",
"turbo": "^1.10.16",
Expand Down
12 changes: 0 additions & 12 deletions tsconfig.base.json

This file was deleted.

14 changes: 13 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
{
"extends": "./tsconfig.base.json"
"compilerOptions": {
/* Base Options: */
"esModuleInterop": true,
"skipLibCheck": true,
"target": "es2022",
"allowJs": true,
"resolveJsonModule": true,
"moduleDetection": "force",

/* Strictness */
"strict": true,
"noUncheckedIndexedAccess": true
}
}
18 changes: 10 additions & 8 deletions turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,18 @@
"$schema": "https://turbo.build/schema.json",
"pipeline": {
"build": {
"dependsOn": ["^build"],
"outputs": [".next/**", "!.next/cache/**"]
"dependsOn": [
"^build"
],
"outputs": [
".next/**",
"!.next/cache/**"
]
},
"deploy": {
"dependsOn": ["build", "lint"]
},
"lint": {},
"dev": {
"cache": false,
"persistent": true
"dependsOn": [
"build"
]
}
}
}

0 comments on commit 89d6071

Please sign in to comment.