apollo-server/tsconfig.json
Evans Hauser 9af856c2c8
Typescript Improvements and esModuleInterop fix (#1210)
* add string input to gql tag

* remove esModuleInterop, tested locally

* change IMPORT_FUNCTION to something real

* fix the rest of the tests
2018-06-20 16:21:50 -07:00

16 lines
383 B
JSON

{
"compilerOptions": {
"target": "es2016",
"module": "commonjs",
"moduleResolution": "node",
"sourceMap": true,
"declaration": true,
"declarationMap": true,
"noImplicitAny": false,
"removeComments": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"lib": ["es2016", "esnext.asynciterable"],
"types": ["node", "mocha"]
}
}