mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-13 21:05:19 +00:00
24 lines
632 B
JSON
24 lines
632 B
JSON
{
|
|
"extends": "../tsconfig.json",
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"outDir": "./dist",
|
|
"paths": {
|
|
"@blocks/*": ["../blocks/src/*"],
|
|
"@inline/*": ["../framework/inline/src/*"],
|
|
"@store/*": ["../framework/store/src/*"],
|
|
"@playground/*": ["../playground/*"]
|
|
}
|
|
},
|
|
"include": ["**.spec.ts", "**.test.ts", "**/**.ts"],
|
|
"exclude": ["dist"],
|
|
"references": [
|
|
{ "path": "../affine/components" },
|
|
{ "path": "../affine/model" },
|
|
{ "path": "../affine/shared" },
|
|
{ "path": "../framework/block-std" },
|
|
{ "path": "../framework/global" },
|
|
{ "path": "../presets" }
|
|
]
|
|
}
|