mirror of
https://github.com/wassname/talk.git
synced 2026-07-01 10:53:48 +08:00
6da97c57d7
* chore: rename talk to coral * fix: lint and unit tests * fix: snapshot
23 lines
602 B
JSON
23 lines
602 B
JSON
{
|
|
"extends": "../tsconfig.json",
|
|
"compilerOptions": {
|
|
"target": "es2018",
|
|
"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": ["dom", "es2018", "esnext.asynciterable"],
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"coral-server/*": ["./core/server/*"],
|
|
"coral-common/*": ["./core/common/*"]
|
|
}
|
|
},
|
|
"include": ["./**/*"],
|
|
"exclude": ["node_modules", "./core/client"]
|
|
}
|