-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
tsconfig.json
45 lines (45 loc) · 2.24 KB
/
tsconfig.json
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
{
"compilerOptions": {
"incremental": true,
"baseUrl": ".",
"outDir": "dist",
"rootDir": "packages",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"importHelpers": true,
"experimentalDecorators": true,
"module": "esnext",
"target": "es2021",
"lib": ["es6", "esnext", "es2021", "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": ["**/tests/test-files", "**/tests/test-documents", "**/dist", "**/temp"]
}