File tree Expand file tree Collapse file tree 5 files changed +20
-12
lines changed Expand file tree Collapse file tree 5 files changed +20
-12
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ packages/*/types
7
7
examples /* /types
8
8
/.pnp
9
9
.pnp.js
10
-
10
+ tsconfig.tsbuildinfo
11
11
# testing
12
12
coverage
13
13
Original file line number Diff line number Diff line change 14
14
"resolveJsonModule" : true ,
15
15
"isolatedModules" : true ,
16
16
"noEmit" : true ,
17
- "jsx" : " react-jsx"
18
- // "paths": {
19
- // "@blocknote/core": ["../../packages/core/src"]
20
- // }
17
+ "jsx" : " react-jsx" ,
18
+ "composite" : true
21
19
},
22
20
"include" : [" src" ],
23
21
"references" : [
24
- { "path" : " ./tsconfig.node.json" }
25
- // { "path": "../../packages/core/tsconfig.json" }
22
+ { "path" : " ./tsconfig.node.json" },
23
+ { "path" : " ../../packages/core/" },
24
+ { "path" : " ../../packages/react/" }
26
25
]
27
26
}
Original file line number Diff line number Diff line change 14
14
"resolveJsonModule" : true ,
15
15
"isolatedModules" : true ,
16
16
"noEmit" : true ,
17
- "jsx" : " react-jsx"
17
+ "jsx" : " react-jsx" ,
18
+ "composite" : true
18
19
// "paths": {
19
20
// "@blocknote/core": ["../../packages/core/src"]
20
21
// }
21
22
},
22
23
"include" : [" src" ],
23
24
"references" : [
24
- { "path" : " ./tsconfig.node.json" }
25
- // { "path": "../../packages/core/tsconfig.json" }
25
+ { "path" : " ./tsconfig.node.json" },
26
+ { "path" : " ../../packages/core/" },
27
+ { "path" : " ../../packages/react/" }
26
28
]
27
29
}
Original file line number Diff line number Diff line change 20
20
"composite" : true ,
21
21
"skipLibCheck" : true
22
22
},
23
- "include" : [" src" ]
23
+ "include" : [" src" ],
24
+ "references" : [
25
+ {
26
+ "path" : " ../core"
27
+ }
28
+ ]
24
29
}
Original file line number Diff line number Diff line change 18
18
"skipLibCheck" : true ,
19
19
"paths" : {
20
20
"@theme/*" : [" ./docs/.vitepress/theme/*" ]
21
- }
21
+ },
22
+ "composite" : true
22
23
},
23
24
"include" : [
24
25
" src" ,
28
29
// Also need to explicitly include Markdown files to have TS intellisense work with Volar
29
30
" docs/**/*.md"
30
31
],
32
+ "references" : [{ "path" : " ../core/" }, { "path" : " ../react/" }],
31
33
"exclude" : [" node_modules/" ]
32
34
}
You can’t perform that action at this time.
0 commit comments