forked from dotansimha/graphql-code-generator
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
71 lines (71 loc) · 2.52 KB
/
tsconfig.json
File metadata and controls
71 lines (71 loc) · 2.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"compilerOptions": {
"incremental": true,
"baseUrl": ".",
"outDir": "dist",
"rootDir": "packages",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"importHelpers": true,
"experimentalDecorators": true,
"module": "esnext",
"target": "es2022",
"lib": ["es6", "esnext", "es2023", "dom"],
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"sourceMap": true,
"declaration": true,
"noImplicitThis": true,
"alwaysStrict": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"paths": {
"@graphql-codegen/cli": ["packages/graphql-codegen-cli/src/index.ts"],
"@graphql-codegen/core": ["packages/graphql-codegen-core/src/index.ts"],
"@graphql-codegen/add": ["packages/plugins/other/add/src/index.ts"],
"@graphql-codegen/fragment-matcher": ["packages/plugins/other/fragment-matcher/src/index.ts"],
"@graphql-codegen/introspection": ["packages/plugins/other/introspection/src/index.ts"],
"@graphql-codegen/schema-ast": ["packages/plugins/other/schema-ast/src/index.ts"],
"@graphql-codegen/time": ["packages/plugins/other/time/src/index.ts"],
"@graphql-codegen/visitor-plugin-common": [
"packages/plugins/other/visitor-plugin-common/src/index.ts"
],
"@graphql-codegen/typescript-document-nodes": [
"packages/plugins/typescript/document-nodes/src/index.ts"
],
"@graphql-codegen/typescript-operations": [
"packages/plugins/typescript/operations/src/index.ts"
],
"@graphql-codegen/typescript-resolvers": [
"packages/plugins/typescript/resolvers/src/index.ts"
],
"@graphql-codegen/typed-document-node": [
"packages/plugins/typescript/typed-document-node/src/index.ts"
],
"@graphql-codegen/gql-tag-operations": [
"packages/plugins/typescript/gql-tag-operations/src/index.ts"
],
"@graphql-codegen/typescript": ["packages/plugins/typescript/typescript/src/index.ts"],
"@graphql-codegen/testing": ["packages/utils/graphql-codegen-testing/src/index.ts"],
"@graphql-codegen/plugin-helpers": ["packages/utils/plugins-helpers/src/index.ts"]
}
},
"include": ["packages"],
"exclude": [
"**/dist",
"**/temp",
"**/vitest.config.ts",
"**/vitest.setup.ts",
"**/*.spec.ts",
"**/tests/**/*.ts",
"**/tests/test-files",
"**/tests/test-documents"
],
"references": [
{
"path": "./tsconfig.spec.json"
}
]
}