mirror of
https://github.com/vale981/apollo-server
synced 2025-03-04 17:21:42 -05:00

We can't use `apollo-server-env` as a project reference because that requires `composite: true`, and that implies `declaration: true`, which doesn't work for `apollo-server-env` because we need to write our own declaration files for re-exported imports. This commit also removes `apollo-engine-reporting-protobuf` as a reference, which errored out because it doesn't actually contain any TypeScript code.
12 lines
255 B
JSON
12 lines
255 B
JSON
{
|
|
"extends": "../../tsconfig.base",
|
|
"compilerOptions": {
|
|
"rootDir": "./src",
|
|
"outDir": "./dist"
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["**/__tests__", "**/__mocks__"],
|
|
"references": [
|
|
{ "path": "../apollo-server-caching" },
|
|
]
|
|
}
|