Files
talk/tsconfig.json
T
Kiwi 6d7056d831 [next] Add support for embed (#1762)
* Move talk-server/config to talk-common/config

* Refactor build into /src/core/build and use common config

* Add embed webpack config

* Start implementing embed

* Implement embed

* Add pym types

* Add event emitter to Talk Context

* Add MatchMedia test for passing values from the context

* Add support for click far away

* Integrate pym click events to registerClickFarAway

* Add tests

* Resolve merge issues

* Apply PR review
2018-08-02 15:29:18 +00:00

27 lines
603 B
JSON

{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"allowJs": true,
"noEmit": true,
"moduleResolution": "node",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"noUnusedLocals": true,
"noImplicitThis": true,
"noImplicitReturns": true,
"noImplicitAny": true,
"strictNullChecks": true,
"noErrorTruncation": true,
"lib": ["dom", "es6", "esnext.asynciterable"]
},
"include": [
"./src/**/.*.js",
"./src/types/**/*.d.ts",
"./scripts/**/*",
"./config/**/*",
"*.js"
],
"exclude": ["node_modules"]
}