Files
talk/tsconfig.json
T
KiwiandWyatt Johnson 65c8da0f34 Merge client into next (#1709)
* Merge client
* Add linting script
* Rename serve to start:development
* Move error harmonization and handling to network layer
* Show Comment Stream
* Added initial test
2018-06-27 22:06:30 +00:00

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"
]
}