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.

Prevent tsc from emitting build artifacts

+3 -2
+1 -1
package.json
··· 6 6 ], 7 7 "scripts": { 8 8 "test": "jest", 9 - "check": "tsc --noEmit", 9 + "check": "tsc", 10 10 "lint": "eslint .", 11 11 "build": "./scripts/rollup/build.js" 12 12 },
+1
scripts/rollup/plugins.js
··· 44 44 ], 45 45 compilerOptions: { 46 46 sourceMap: true, 47 + noEmit: false, 47 48 declaration: !isProduction, 48 49 declarationDir: settings.types, 49 50 target: 'es6',
+1 -1
tsconfig.json
··· 10 10 "esModuleInterop": true, 11 11 "forceConsistentCasingInFileNames": true, 12 12 "noUnusedLocals": true, 13 - "declaration": false, 13 + "noEmit": true, 14 14 "lib": ["dom", "esnext"], 15 15 "jsx": "react", 16 16 "module": "es2015",