Skip to content

Commit 1ac35c4

Browse files
tsconfig.json: enable 'isolatedModules' (#3154)
1 parent 15148f8 commit 1ac35c4

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/utilities/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,4 +105,4 @@ export {
105105
export type { BreakingChange, DangerousChange } from './findBreakingChanges';
106106

107107
/** Wrapper type that contains DocumentNode and types that can be deduced from it. */
108-
export { TypedQueryDocumentNode } from './typedQueryDocumentNode';
108+
export type { TypedQueryDocumentNode } from './typedQueryDocumentNode';

tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"target": "es2019",
77
"strict": true,
88
"noEmit": true,
9+
"isolatedModules": true,
910
"forceConsistentCasingInFileNames": true
1011
}
1112
}

0 commit comments

Comments
 (0)