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 72999b9 commit 7b077aeCopy full SHA for 7b077ae
.gitignore
@@ -1,5 +1,4 @@
1
node_modules/
2
dist/
3
coverage/
4
-schemaDiff/
5
-schema.graphql
+.dev/
package.json
@@ -12,6 +12,10 @@
12
"lint:fix": "prettier --parser typescript --single-quote --write src/**"
13
},
14
"bin": "dist/cli.js",
15
+ "files": [
16
+ "dist/",
17
+ "npm-shrinkwrap.json"
18
+ ],
19
"keywords": [
20
"graphql",
21
"schema",
tsconfig.json
@@ -10,5 +10,7 @@
10
"resolveJsonModule": true,
11
"declaration": true,
"noImplicitAny": true
- }
+ },
+ "include": ["src/**/*.ts"],
+ "exclude": ["src/__tests__"]
}
0 commit comments