Skip to content

Commit

Permalink
fix: tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
productdevbook committed Mar 6, 2023
1 parent ce7698c commit bbb221d
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "urql-storage-capacitor",
"version": "1.0.0",
"description": "add description",
"description":"Graphcache offline storage for Capacitor",
"keywords": [
"urql",
"graphql client",
Expand All @@ -13,7 +13,7 @@
],
"homepage": "https://github.com/productdevbookcom/urql-storage-capacitor",
"bugs": "https://github.com/productdevbookcom/urql-storage-capacitor/issues",
"author": "Mehmet ",
"author": "productdevbook",
"repository": {
"type": "git",
"url": "https://github.com/productdevbookcom/urql-storage-capacitor.git"
Expand Down Expand Up @@ -42,7 +42,7 @@
"build": "tsup --dts",
"dev": "tsup --watch",
"prepublishOnly": "pnpm run build",
"release": "bumpp --commit --push --tag && pnpm publish",
"release": "pnpm build && bumpp --commit --push --tag && pnpm publish",
"lint": "eslint --ext .ts,.tsx,.js,.jsx .",
"lint:fix": "eslint --ext .ts,.tsx,.js,.jsx . --fix",
"test": "vitest",
Expand Down
16 changes: 16 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "Node 16",
"compilerOptions": {
"lib": [
"es2021"
],
"module": "commonjs",
"target": "es2021",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "node"
}
}

0 comments on commit bbb221d

Please sign in to comment.