apollo-server/packages/apollo-server-core/tsconfig.json

21 lines
635 B
JSON
Raw Normal View History

{
"extends": "../../tsconfig.base",
"compilerOptions": {
"rootDir": "./src",
"outDir": "./dist"
},
"include": ["src/**/*"],
"exclude": ["**/__tests__", "**/__mocks__", "src/requestPipelineAPI.ts"],
2018-10-05 17:47:29 +02:00
"references": [
{ "path": "./tsconfig.requestPipelineAPI.json" },
2018-10-05 17:47:29 +02:00
{ "path": "../apollo-cache-control" },
{ "path": "../apollo-datasource" },
{ "path": "../apollo-engine-reporting" },
{ "path": "../apollo-server-caching" },
{ "path": "../apollo-server-errors" },
{ "path": "../apollo-server-plugin-base" },
2018-10-05 17:47:29 +02:00
{ "path": "../apollo-tracing" },
{ "path": "../graphql-extensions" }
]
}