mirror of
https://github.com/vale981/apollo-server
synced 2025-03-06 10:11:40 -05:00

* Remove Node dependencies from package.json * Replace Node request with fetch * Wrap fetch in @zeit/fetch-retry, convert to async/await, and fix types * Use async-retry directly because @zeit/fetch-retry doesn't support Node 6 * bump server-env version in graphql-extensions * explicitly include factor in async-retry * change apollo-server-env to rc.5
19 lines
473 B
JSON
19 lines
473 B
JSON
{
|
|
"extends": "../../tsconfig",
|
|
"compilerOptions": {
|
|
"rootDir": "./src",
|
|
"outDir": "./dist",
|
|
"allowJs": true,
|
|
"declaration": false,
|
|
"declarationMap": false,
|
|
"removeComments": true,
|
|
"strict": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUnusedParameters": true,
|
|
"noUnusedLocals": true
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "**/__tests__/*", "**/__mocks__/*"],
|
|
"types": []
|
|
}
|