Mirror: The highly customizable and versatile GraphQL client with which you add on features like normalized caching as you grow.
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

(chore) - Update tsconfig.json in storybook-addon to match others (#1010)

* Update tsconfig.json in storybook-addon to match others

* Fix up dependencies accidentally including react

authored by

Phil Pluckthun and committed by
GitHub
0c92e289 e39bcc5f

+3 -7
-1
exchanges/request-policy/package.json
··· 16 16 "graphql client", 17 17 "formidablelabs", 18 18 "exchanges", 19 - "react", 20 19 "request-policy" 21 20 ], 22 21 "main": "dist/urql-exchange-request-policy",
+1 -5
exchanges/retry/package.json
··· 16 16 "graphql client", 17 17 "formidablelabs", 18 18 "exchanges", 19 - "react", 20 19 "retry" 21 20 ], 22 21 "main": "dist/urql-exchange-retry", ··· 51 50 "preset": "../../scripts/jest/preset" 52 51 }, 53 52 "devDependencies": { 54 - "@types/react": "^16.9.19", 55 - "graphql": "^15.1.0", 56 - "react": "^16.13.0", 57 - "react-dom": "^16.13.0" 53 + "graphql": "^15.1.0" 58 54 }, 59 55 "peerDependencies": { 60 56 "graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0"
+2 -1
packages/storybook-addon/tsconfig.json
··· 2 2 "extends": "../../tsconfig.json", 3 3 "include": ["src"], 4 4 "compilerOptions": { 5 - "baseUrl": "src", 5 + "baseUrl": "./", 6 6 "paths": { 7 7 "urql": ["../../node_modules/urql/src"], 8 8 "*-urql": ["../../node_modules/*-urql/src"], 9 + "@urql/core/*": ["../../node_modules/@urql/core/src/*"], 9 10 "@urql/*": ["../../node_modules/@urql/*/src"] 10 11 } 11 12 }