Merge branch 'next' into next-passport

This commit is contained in:
Wyatt Johnson
2018-07-04 09:57:07 -06:00
16 changed files with 624 additions and 54 deletions
+1 -2
View File
@@ -4,8 +4,7 @@
"target": "es2015",
"module": "esnext",
"jsx": "preserve",
"noEmit": true,
"strictNullChecks": true,
"allowJs": false,
"lib": [
"dom",
"es7",
+34
View File
@@ -0,0 +1,34 @@
{
"extends": "../tsconfig.json",
"compilerOptions": {
"allowJs": false,
"sourceMap": true,
"pretty": false,
"removeComments": true,
"noEmit": false,
"outDir": "../dist",
// See https://github.com/prismagraphql/graphql-request/issues/26 for why we
// have to include "dom" here.
"lib": [
"es6",
"esnext.asynciterable",
"dom"
],
"baseUrl": "./",
"paths": {
"talk-server/*": [
"./core/server/*"
],
"talk-common/*": [
"./core/common/*"
]
}
},
"include": [
"./**/*"
],
"exclude": [
"node_modules",
"./core/client"
]
}