mirror of
https://github.com/vale981/apollo-server
synced 2025-03-04 09:11:40 -05:00
26 lines
628 B
JSON
26 lines
628 B
JSON
{
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"target": "es2016",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"sourceMap": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"removeComments": true,
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUnusedParameters": true,
|
|
"noUnusedLocals": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"lib": ["es2017", "esnext.asynciterable"],
|
|
"types": ["node"],
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"*" : ["types/*"]
|
|
}
|
|
}
|
|
}
|