2018-07-07 04:52:56 +08:00
|
|
|
{
|
2018-08-11 15:13:53 +02:00
|
|
|
"extends": "../../tsconfig",
|
2018-07-07 04:52:56 +08:00
|
|
|
"compilerOptions": {
|
|
|
|
"rootDir": "./src",
|
|
|
|
"outDir": "./dist",
|
2018-08-11 15:13:53 +02:00
|
|
|
"noImplicitAny": false,
|
|
|
|
"strictNullChecks": false,
|
|
|
|
"noImplicitReturns": false
|
2018-07-07 04:52:56 +08:00
|
|
|
},
|
2018-07-31 15:40:03 -07:00
|
|
|
"include": ["src/**/*"],
|
2018-10-05 17:47:29 +02:00
|
|
|
"exclude": ["**/__tests__", "**/__mocks__"],
|
|
|
|
"references": [
|
|
|
|
{ "path": "../apollo-server-core" },
|
|
|
|
{ "path": "../apollo-server-env" },
|
|
|
|
{ "path": "../apollo-server-integration-testsuite" }
|
|
|
|
]
|
2018-07-07 04:52:56 +08:00
|
|
|
}
|