mirror of
https://github.com/vale981/apollo-server
synced 2025-03-06 02:01:40 -05:00
17 lines
440 B
JSON
17 lines
440 B
JSON
{
|
|
"extends": "../../tsconfig",
|
|
"compilerOptions": {
|
|
"rootDir": "./src",
|
|
"outDir": "./dist",
|
|
"removeComments": true,
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUnusedParameters": true,
|
|
"noUnusedLocals": true,
|
|
"types": ["node", "jest"]
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "**/__tests__/*", "**/__mocks__/*"]
|
|
}
|