Files
talk/src/core/client/tsconfig.json
T
2018-08-08 01:03:49 +02:00

22 lines
598 B
JSON

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