mirror of
https://github.com/toeverything/AFFiNE.git
synced 2025-01-06 08:26:10 +03:00
19 lines
611 B
JSON
19 lines
611 B
JSON
// to prevent the `@affine/components` contains circular references with `@affine/workspace`
|
|
// the include files should be excluded in `./tsconfig.json`
|
|
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"noEmit": false,
|
|
"outDir": "lib"
|
|
},
|
|
"include": [
|
|
"./src/components/page-list/filter/shared-types.tsx",
|
|
"./src/components/page-list/filter/logical/custom-type.ts",
|
|
"./src/components/page-list/filter/logical/matcher.ts",
|
|
"./src/components/page-list/filter/logical/typesystem.ts"
|
|
],
|
|
"references": [{ "path": "../env" }],
|
|
"exclude": ["lib"]
|
|
}
|