Files
talk/src/core/client/tsconfig.json
T
KiwiandGitHub 6da97c57d7 [CORL-314] Rename to Coral (#2318)
* chore: rename talk to coral

* fix: lint and unit tests

* fix: snapshot
2019-05-22 21:32:24 +02:00

25 lines
709 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-embed/*": ["./embed/*"],
"coral-stream/*": ["./stream/*"],
"coral-framework/*": ["./framework/*"],
"coral-ui/*": ["./ui/*"],
"coral-test/*": ["./test/*"],
"coral-common/*": ["../common/*"]
}
},
"include": ["./**/*", "../../types/**/*.d.ts"],
"exclude": ["node_modules"]
}