mirror of
https://github.com/wassname/talk.git
synced 2026-07-06 01:08:30 +08:00
22 lines
598 B
JSON
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"]
|
|
}
|