Files
AFFiNE-Mirror/packages/frontend/core/tsconfig.json
EYHN 265ee81666 refactor(infra): remove old plugin system (#5411)
plugin system need redesign
2023-12-27 02:49:59 +00:00

40 lines
789 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/hooks"
},
{
"path": "../../frontend/i18n"
},
{
"path": "../../frontend/workspace"
},
{
"path": "../../common/debug"
},
{
"path": "../../common/env"
},
{
"path": "./tsconfig.node.json"
},
{
"path": "./tsconfig.server.json"
}
]
}