hyperchat/packages/web/tsconfig.json

38 lines
741 B
JSON

{
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "./dist",
"rootDir": "../",
"jsxFactory": "React.createElement",
"jsxFragmentFactory": "React.Fragment",
"jsx": "react",
"typeRoots": [
"./node_modules/@types",
"./types"
],
"paths": {
"@dadigua/hyperchat-shared": [
"../shared/src/index.ts"
],
"@/*": [
"./*"
],
},
"composite": true,
"incremental": true,
"tsBuildInfoFile": "./dist/.tsbuildinfo"
},
"include": [
"src",
"types",
"**/*.json",
"../shared/src",
"../shared/src/**/*.json",
"../electron/src",
"../core/src",
"../core/**/*.json",
],
"exclude": [
"node_modules"
]
}