Skip to content

Commit

Permalink
Updated config
Browse files Browse the repository at this point in the history
  • Loading branch information
bring-shrubbery committed Nov 4, 2023
1 parent 90b0c8c commit 620f704
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/next/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --external react --external next",
"clean": "git clean -xdf .next .turbo node_modules",
"lint": "eslint .",
"lint": "eslint ./src",
"dev": "tsup src/index.ts --format esm,cjs --watch --dts --external react --external next",
"typecheck": "tsc --noEmit",
"typecheck": "tsc",
"with-env": "dotenv -e ../../.env --"
},
"eslintConfig": {
Expand Down
3 changes: 3 additions & 0 deletions packages/next/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
{
"extends": "@use-search-params-state/tsconfig/base.json",
"compilerOptions": {
"incremental": false
},
"include": ["."],
"exclude": ["dist", "build", "node_modules"]
}
4 changes: 2 additions & 2 deletions packages/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
"build": "tsup src/index.ts --format cjs,esm --dts --external react",
"clean": "git clean -xdf .next .turbo node_modules",
"dev": "tsup src/index.ts --format esm,cjs --watch --dts --external react",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"lint": "eslint ./src",
"typecheck": "tsc",
"with-env": "dotenv -e ../../.env --"
},
"dependencies": {
Expand Down
3 changes: 3 additions & 0 deletions packages/react/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
{
"extends": "@use-search-params-state/tsconfig/base.json",
"compilerOptions": {
"incremental": false
},
"include": ["."],
"exclude": ["dist", "build", "node_modules"]
}

0 comments on commit 620f704

Please sign in to comment.