Skip to content

Commit

Permalink
feat!: bring TS 5 support (#480)
Browse files Browse the repository at this point in the history
- TypeScript users must now put `"lib": ["DOM", "DOM.Iterable", "ES2020”]` into their `tsconfig.json`.
  • Loading branch information
renovate[bot] authored Apr 4, 2023
1 parent b15e948 commit 702ef92
Show file tree
Hide file tree
Showing 14 changed files with 316 additions and 769 deletions.
25 changes: 13 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
"dev": "rm -rf dist && tsc --watch",
"format": "prettier --write .",
"lint": "eslint . --ext .ts,.tsx --fix",
"check": "pnpm check:types && pnpm check:format && pnpm check:lint",
"check:types": "pnpm tsc --noEmit",
"check:format": "prettier --check .",
"check:lint": "eslint . --ext .ts,.tsx --max-warnings 0",
Expand All @@ -60,7 +61,7 @@
"release:pr": "dripip pr"
},
"dependencies": {
"@graphql-typed-document-node/core": "^3.1.1",
"@graphql-typed-document-node/core": "^3.2.0",
"cross-fetch": "^3.1.5",
"extract-files": "^9.0.0",
"form-data": "^3.0.0"
Expand All @@ -75,18 +76,18 @@
"@types/body-parser": "^1.19.2",
"@types/express": "^4.17.16",
"@types/extract-files": "^8.1.1",
"@types/node": "^18.11.18",
"@types/node": "^18.15.11",
"@types/ws": "^8.5.4",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"@vitest/coverage-c8": "^0.29.0",
"apollo-server-express": "^3.11.1",
"body-parser": "^1.20.1",
"doctoc": "^2.2.1",
"dripip": "^0.10.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-deprecation": "^1.3.3",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-deprecation": "^1.4.0",
"eslint-plugin-only-warn": "^1.1.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-simple-import-sort": "^10.0.0",
Expand All @@ -96,13 +97,13 @@
"get-port": "^6.1.2",
"graphql": "^16.6.0",
"graphql-tag": "^2.12.5",
"graphql-ws": "^5.11.2",
"happy-dom": "^9.0.0",
"graphql-ws": "^5.12.1",
"happy-dom": "^9.1.7",
"prettier": "^2.8.3",
"type-fest": "^3.5.3",
"typescript": "^4.9.4",
"type-fest": "^3.7.2",
"typescript": "^5.0.3",
"vitest": "^0.29.0",
"ws": "^8.12.0"
"ws": "^8.13.0"
},
"prettier": "@prisma-labs/prettier-config"
}
Loading

0 comments on commit 702ef92

Please sign in to comment.