hyperchat/packages/electron/tsconfig.json

23 lines
390 B
JSON

{
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "./dist",
"rootDir": "../",
"paths": {
"@dadigua/hyperchat-shared/*": [
"../shared/src/*"
],
"@dadigua/hyperchat-shared": [
"../shared/src/index.ts"
],
}
},
"include": [
"src/**/*",
"types/**/*"
],
"exclude": [
"node_modules",
"dist"
]
}