Skip to content

Commit

Permalink
Add declaration maps
Browse files Browse the repository at this point in the history
  • Loading branch information
emmatown committed Oct 28, 2021
1 parent 8a06245 commit ef18bba
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
6 changes: 6 additions & 0 deletions .changeset/poor-rivers-hunt.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@graphql-ts/extend": patch
"@graphql-ts/schema": patch
---

Added declaration maps
3 changes: 2 additions & 1 deletion packages/extend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
"main": "dist/graphql-ts-extend.cjs.js",
"module": "dist/graphql-ts-extend.esm.js",
"files": [
"dist"
"dist",
"src"
],
"license": "MIT",
"dependencies": {
Expand Down
3 changes: 2 additions & 1 deletion packages/schema/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
"files": [
"dist",
"api-without-context",
"api-with-context"
"api-with-context",
"src"
],
"license": "MIT",
"dependencies": {
Expand Down
4 changes: 3 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,8 @@
"jsx": "preserve",
/* Advanced Options */
"skipLibCheck": true /* Skip type checking of declaration files. */,
"forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */
"forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */,
"declaration": true,
"declarationMap": true
}
}

0 comments on commit ef18bba

Please sign in to comment.