mirror of
https://github.com/wassname/talk.git
synced 2026-06-29 09:56:44 +08:00
25 lines
726 B
JSON
25 lines
726 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"module": "commonjs",
|
|
"esModuleInterop": true,
|
|
"noImplicitAny": true,
|
|
"allowJs": true,
|
|
"moduleResolution": "node",
|
|
"sourceMap": true,
|
|
"outDir": "dist",
|
|
"baseUrl": ".",
|
|
"pretty": false,
|
|
"removeComments": true,
|
|
// See https://github.com/prismagraphql/graphql-request/issues/26 for why we
|
|
// have to include "dom" here.
|
|
"lib": ["es6", "esnext.asynciterable", "dom"],
|
|
"paths": {
|
|
"talk-server/*": ["./src/core/server/*"],
|
|
"talk-common/*": ["./src/core/common/*"]
|
|
}
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules"]
|
|
}
|