mirror of
https://github.com/vale981/apollo-server
synced 2025-03-06 02:01:40 -05:00
17 lines
435 B
JSON
17 lines
435 B
JSON
{
|
|
"extends": "../../tsconfig",
|
|
"compilerOptions": {
|
|
"rootDir": "./src",
|
|
"outDir": "./dist",
|
|
"noImplicitAny": false,
|
|
"strictNullChecks": false,
|
|
"noImplicitReturns": false
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["**/__tests__", "**/__mocks__"],
|
|
"references": [
|
|
{ "path": "../apollo-server-core" },
|
|
{ "path": "../apollo-server-env" },
|
|
{ "path": "../apollo-server-integration-testsuite" }
|
|
]
|
|
}
|