tweaking compiler options

This commit is contained in:
evilchili
2026-08-10 12:20:38 -07:00
parent d16e30caa5
commit 4bfaf1b23c
2 changed files with 3 additions and 1 deletions
+2
View File
@@ -2,6 +2,8 @@
"name": "hopdown", "name": "hopdown",
"version": "1.0.0", "version": "1.0.0",
"description": "Configurable HTML <=> Markdown converter for WYSIWYG editors.", "description": "Configurable HTML <=> Markdown converter for WYSIWYG editors.",
"main": "dist/js/index.js",
"module": "dist/esm/index.js",
"files": [ "files": [
"dist/lib/" "dist/lib/"
], ],
+1 -1
View File
@@ -2,7 +2,7 @@
"compilerOptions": { "compilerOptions": {
"strict": true, "strict": true,
"target": "ES2025", "target": "ES2025",
"module": "CommonJS", "module": "ES2022",
"esModuleInterop": true, "esModuleInterop": true,
"types": ["node"], "types": ["node"],
"forceConsistentCasingInFileNames": true, "forceConsistentCasingInFileNames": true,