Skip to content

Commit

Permalink
ok
Browse files Browse the repository at this point in the history
  • Loading branch information
RohanVashisht1234 committed Sep 9, 2024
1 parent 47d6ac6 commit 753ddae
Show file tree
Hide file tree
Showing 7 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dist/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export { highlight, highlightElements, highlightElement } from "./main";
export { highlight, highlightElements, highlightElement } from "./main.mjs";
export { bash } from "./language/bash";
export { zig } from "./language/zig";
export { diff } from "./language/diff";
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export { highlight, highlightElements, highlightElement } from "./main";
export { highlight, highlightElements, highlightElement } from "./main.mjs";
export { bash } from "./language/bash";
export { zig } from "./language/zig";
export { diff } from "./language/diff";
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export { highlight, highlightElements, highlightElement } from "./main"
export { highlight, highlightElements, highlightElement } from "./main.mjs"
export { bash } from "./language/bash"
export { zig } from "./language/zig"
export { diff } from "./language/diff"
File renamed without changes.
1 change: 0 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
"outDir": "./dist", // Output folder for compiled JavaScript
"strict": true, // Enable strict type-checking options
"esModuleInterop": true, // Compatibility with CommonJS modules
"skipLibCheck": true, // Skip type checking of declaration files
"forceConsistentCasingInFileNames": true, // Enforce consistent file naming
"moduleResolution": "node", // Resolve module imports
"isolatedModules": true, // Ensure each file can be safely transpiled
Expand Down

0 comments on commit 753ddae

Please sign in to comment.