Skip to content

Commit

Permalink
chore: declaration maps for benchmarks
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurfiorette committed Mar 9, 2024
1 parent aa8973d commit 7a51612
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
4 changes: 3 additions & 1 deletion benchmarks/kitajs/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@
"moduleResolution": "Node16",
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"jsxImportSource": "@kitajs/html"
"jsxImportSource": "@kitajs/html",
"declaration": true,
"declarationMap": true
},
"include": ["renderers", "index.ts"],
"exclude": ["dist"]
Expand Down
4 changes: 3 additions & 1 deletion benchmarks/reactjsx/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
"compilerOptions": {
"baseUrl": "./",
"outDir": "dist",
"jsx": "react-jsx"
"jsx": "react-jsx",
"declaration": true,
"declarationMap": true
},
"include": ["renderers", "index.ts"],
"exclude": ["node_modules", "dist"]
Expand Down
4 changes: 3 additions & 1 deletion benchmarks/templates/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@
"module": "Node16",
"target": "ESNext",
"jsx": "react-jsx",
"jsxImportSource": "@kitajs/html"
"jsxImportSource": "@kitajs/html",
"declaration": true,
"declarationMap": true
},
"include": ["renderers", "index.ts"],
"exclude": ["dist"]
Expand Down
4 changes: 3 additions & 1 deletion benchmarks/typed-html/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@
"moduleResolution": "Node16",
"target": "ESNext",
"jsx": "react",
"jsxFactory": "elements.createElement"
"jsxFactory": "elements.createElement",
"declaration": true,
"declarationMap": true
},
"include": ["renderers", "index.ts"],
"exclude": ["dist"]
Expand Down

0 comments on commit 7a51612

Please sign in to comment.