Files
talk/src/core/client/tsconfig.json
T
Vinh 808b355a27 [CORL-181] Comment Count Injection (#2581)
* feat: inject comment counts

* fix: tests

* feat: integrate stream embed with coral counts

* chore: refactor constants

* test: test for count bundle

* test: test live comment count integration with stream embed

* feat: use defer

* fix: snapshot

* feat: auto add count.js in when calling Coral.createStreamEmbed

* fix: tests

* fix: rm duplicate test

* chore: remove unuse file
2019-10-01 19:22:15 +00:00

26 lines
747 B
JSON

{
"extends": "../../../tsconfig.json",
"compilerOptions": {
"target": "es2015",
"module": "esnext",
"jsx": "preserve",
"allowJs": false,
"lib": ["dom", "es7", "scripthost", "es2015", "esnext.asynciterable"],
"baseUrl": "./",
"paths": {
"coral-account/*": ["./account/*"],
"coral-admin/*": ["./admin/*"],
"coral-auth/*": ["./auth/*"],
"coral-count/*": ["./count/*"],
"coral-embed/*": ["./embed/*"],
"coral-stream/*": ["./stream/*"],
"coral-framework/*": ["./framework/*"],
"coral-ui/*": ["./ui/*"],
"coral-test/*": ["./test/*"],
"coral-common/*": ["../common/*"]
}
},
"include": ["./**/*", "../../types/**/*.d.ts"],
"exclude": ["node_modules"]
}