File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -114,12 +114,11 @@ module.exports = {
114114 } ,
115115 } ,
116116 ] ,
117- // Temporarily disabled due to TypeScript errors
118- // [
119- // 'docusaurus-preset-shiki-twoslash',
120- // {
121- // themes: ['material-palenight'],
122- // },
123- // ],
117+ [
118+ 'docusaurus-preset-shiki-twoslash' ,
119+ {
120+ themes : [ 'material-palenight' ] ,
121+ } ,
122+ ] ,
124123 ] ,
125124}
Original file line number Diff line number Diff line change 1+ {
2+ "extends" : " ../tsconfig.json" ,
3+ "compilerOptions" : {
4+ "jsx" : " react-jsx" ,
5+ "module" : " esnext" ,
6+ "moduleResolution" : " node" ,
7+ "allowSyntheticDefaultImports" : true ,
8+ "esModuleInterop" : true ,
9+ "skipLibCheck" : true ,
10+ "strict" : false ,
11+ "noEmit" : true ,
12+ "allowJs" : true
13+ },
14+ "include" : [
15+ " docs/**/*" ,
16+ " src/**/*"
17+ ],
18+ "exclude" : [
19+ " node_modules" ,
20+ " build" ,
21+ " .docusaurus"
22+ ]
23+ }
You can’t perform that action at this time.
0 commit comments