mirror of
https://github.com/wassname/talk.git
synced 2026-07-10 22:00:56 +08:00
808b355a27
* 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
26 lines
747 B
JSON
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"]
|
|
}
|