Files
talk/src/tsconfig.json
T
Belén Curcio 805492931b Implement Timestamp
Merge branch 'next' into timestamp

Fix test and translations

Merge branch 'timestamp' of github.com:coralproject/talk into timestamp

* 'timestamp' of github.com:coralproject/talk:
  Fix test and translations
  Implement Timestamp
2018-07-10 13:34:27 -03:00

22 lines
573 B
JSON

{
"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"]
}