mirror of
https://github.com/wassname/talk.git
synced 2026-07-15 11:26:58 +08:00
25 lines
709 B
JSON
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"]
|
|
}
|