mirror of
https://github.com/vale981/apollo-server
synced 2025-03-05 09:41:40 -05:00

* Revert "get supertest working for TS"
This reverts commit 300b32fa5a
.
* initial hapi plugin
* working hapi server
* update exports for es6 support
19 lines
374 B
JSON
19 lines
374 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es6",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"sourceMap": true,
|
|
"declaration": true,
|
|
"noImplicitAny": false,
|
|
"rootDir": "./src",
|
|
"outDir": "./dist",
|
|
"allowSyntheticDefaultImports": true,
|
|
"pretty": true,
|
|
"removeComments": true
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist"
|
|
]
|
|
}
|