mirror of
https://github.com/wassname/talk.git
synced 2026-08-06 13:41:02 +08:00
* Merge client * Add linting script * Rename serve to start:development * Move error harmonization and handling to network layer * Show Comment Stream * Added initial test
40 lines
906 B
JSON
40 lines
906 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"
|
|
]
|
|
}
|