mirror of
https://github.com/wassname/talk.git
synced 2026-07-03 06:03:40 +08:00
805492931b
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
22 lines
573 B
JSON
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"]
|
|
}
|