AFFiNE/packages/frontend/core/tsconfig.json
EYHN 104c21d84c
refactor(workspace): split workspace interface and implementation (#5463)
@affine/workspace -> (@affine/workspace, @affine/workspace-impl)
2024-01-02 10:58:01 +00:00

46 lines
907 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": "../../common/workspace"
},
{
"path": "../../frontend/workspace-impl"
},
{
"path": "../../frontend/electron-api"
},
{
"path": "../../common/debug"
},
{
"path": "../../common/env"
},
{
"path": "../../common/y-indexeddb"
},
{
"path": "./tsconfig.node.json"
},
{
"path": "./tsconfig.server.json"
}
]
}