-
Notifications
You must be signed in to change notification settings - Fork 5
/
tsconfig.json
51 lines (51 loc) · 2.31 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
46
47
48
49
50
51
{
"compilerOptions": {
"incremental": true,
"target": "es2019",
"module": "esnext",
"declaration": true,
"outDir": "dist",
"rootDir": ".",
"jsx": "react",
"moduleResolution": "node",
"resolveJsonModule": true,
"strict": true,
"allowJs": true,
"checkJs": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"baseUrl": "./",
"paths": {
"graphql-ez": ["packages/core/main/src/index.ts"],
"graphql-ez/*": ["packages/core/main/src/*"],
"graphql-ez-testing/*": ["internal/testing/src/*"],
"graphql-ez-testing": ["internal/testing/src/index.ts"],
"@graphql-ez/plugin-*": ["packages/plugin/*/src/index.ts"],
"@graphql-ez/client": ["packages/client/main/src/index.ts"],
"@graphql-ez/fastify": ["packages/fastify/main/src/index.ts"],
"@graphql-ez/fastify-testing": ["packages/fastify/testing/src/index.ts"],
"@graphql-ez/express": ["packages/express/main/src/index.ts"],
"@graphql-ez/express-testing": ["packages/express/testing/src/index.ts"],
"@graphql-ez/koa": ["packages/koa/main/src/index.ts"],
"@graphql-ez/koa-testing": ["packages/koa/testing/src/index.ts"],
"@graphql-ez/hapi": ["packages/hapi/main/src/index.ts"],
"@graphql-ez/hapi-testing": ["packages/hapi/testing/src/index.ts"],
"@graphql-ez/nextjs": ["packages/nextjs/main/src/index.ts"],
"@graphql-ez/nextjs-testing": ["packages/nextjs/testing/src/index.ts"],
"@graphql-ez/http": ["packages/http/main/src/index.ts"],
"@graphql-ez/utils": ["packages/core/utils/src/index.ts"],
"@graphql-ez/utils/*": ["packages/core/utils/src/*.ts"],
"@pablosz/graphql-helix": ["packages/helix/core/src/index.ts"],
"@pablosz/graphql-helix-graphiql": ["packages/helix/graphiql/src/index.ts"],
"@pablosz/graphql-helix-graphiql/*": ["packages/helix/graphiql/src/*.ts"]
}
},
"exclude": ["**/dist", "**/website", "**/coverage", "**/.next", "**/browser", "**/test-example", "integration/gql-17"],
"include": ["packages", "internal", "bob-esbuild.config.ts", "jest.config.js", "benchmarks/bench", "integration"]
}