We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba8adf8 commit 70b3b10Copy full SHA for 70b3b10
.gitignore
@@ -1 +1 @@
1
-build/
+dist/
package.json
@@ -2,9 +2,9 @@
2
"name": "apollo-link-mutation-queue",
3
"version": "0.0.1",
4
"description": "An apollo link that queues mutations",
5
- "main": "build/dist/index.js",
6
- "module": "build/dist/index.js",
7
- "typings": "build/dist/index.d.ts",
+ "main": "dist/index.js",
+ "module": "dist/index.js",
+ "typings": "dist/index.d.ts",
8
"scripts": {
9
"build": "tsc",
10
"prepare": "yarn build"
tsconfig.json
@@ -7,7 +7,7 @@
"lib": ["esnext"],
"removeComments": true,
"preserveConstEnums": true,
- "outDir": "build/dist",
+ "outDir": "dist",
11
"sourceMap": true
12
},
13
"include": ["src/**/*"],
0 commit comments