chore: merge blocksuite source code (#9213)

This commit is contained in:
Mirone
2024-12-20 15:38:06 +08:00
committed by GitHub
parent 2c9ef916f4
commit 30200ff86d
2031 changed files with 238888 additions and 229 deletions

78
blocksuite/tsconfig.json Normal file
View File

@@ -0,0 +1,78 @@
{
"extends": "../tsconfig.json",
"compilerOptions": {
"useDefineForClassFields": false,
"module": "NodeNext",
"lib": ["ESNext", "DOM", "DOM.Iterable"],
"moduleResolution": "NodeNext",
"esModuleInterop": true,
"noEmitOnError": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noImplicitOverride": true,
"skipLibCheck": true,
"incremental": true,
"composite": true
},
"files": [],
"references": [
{
"path": "./framework/block-std"
},
{
"path": "./framework/store"
},
{
"path": "./framework/global"
},
{
"path": "./framework/inline"
},
{
"path": "./blocks"
},
{
"path": "./presets"
},
{
"path": "./affine/all"
},
{
"path": "./affine/block-embed"
},
{
"path": "./affine/block-list"
},
{
"path": "./affine/block-paragraph"
},
{
"path": "./affine/block-surface"
},
{
"path": "./affine/components"
},
{
"path": "./affine/data-view"
},
{
"path": "./affine/model"
},
{
"path": "./affine/shared"
},
{
"path": "./affine/widget-scroll-anchoring"
}
],
"ts-node": {
"esm": true,
"experimentalSpecifierResolution": "node",
"compilerOptions": {
"noUnusedLocals": false,
"noUnusedParameters": false,
"noImplicitReturns": false
}
}
}