mirror of
https://github.com/wassname/talk.git
synced 2026-07-05 19:06:55 +08:00
43 lines
929 B
JSON
43 lines
929 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"module": "commonjs",
|
|
"allowJs": true,
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"noUnusedLocals": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"noErrorTruncation": true,
|
|
"sourceMap": true,
|
|
"pretty": false,
|
|
"removeComments": true,
|
|
"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/*": [
|
|
"./src/core/server/*"
|
|
],
|
|
"talk-common/*": [
|
|
"./src/core/common/*"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"./src/core/client"
|
|
]
|
|
} |