Files
AFFiNE-Mirror/packages/frontend/core/tsconfig.json
EYHN 4b217e6b89 refactor(core): move hooks to core (#5458)
* move @toeverything/hooks -> @affine/core/hooks
* delete @toeverything/hooks

hooks are all business-related logic and are deeply coupled with other parts.

Move them into the core and then reconstruct them by feature.
2024-01-02 08:05:46 +00:00

43 lines
850 B
JSON

{
"extends": "../../../tsconfig.json",
"compilerOptions": {
"outDir": "lib",
"typeRoots": ["../../../node_modules", "../../../node_modules/@types"],
"types": ["webpack-env", "ses", "affine__env"]
},
"include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.json"],
"exclude": ["node_modules"],
"references": [
{
"path": "../../frontend/component"
},
{
"path": "../../frontend/graphql"
},
{
"path": "../../frontend/i18n"
},
{
"path": "../../frontend/workspace"
},
{
"path": "../../frontend/electron-api"
},
{
"path": "../../common/debug"
},
{
"path": "../../common/env"
},
{
"path": "../../common/y-indexeddb"
},
{
"path": "./tsconfig.node.json"
},
{
"path": "./tsconfig.server.json"
}
]
}