Skip to content

Commit

Permalink
fix: use preserve module strategy
Browse files Browse the repository at this point in the history
  • Loading branch information
hwbllmnn committed Jun 25, 2024
1 parent 86b3f32 commit 40ffc9c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"description": "GeoStyler Style Parser implementation for SLD",
"type": "module",
"main": "dist/SldStyleParser.js",
"module": "dist/SldStyleParser.js",
"types": "dist/SldStyleParser.d.ts",
"browser": "dist/sldStyleParser.iife.js",
"files": [
Expand Down Expand Up @@ -57,7 +58,7 @@
"coveralls": "^3.1.1",
"eslint": "^8.40.0",
"semantic-release": "^24.0.0",
"typescript": "^5.0.4",
"typescript": "^5.4.5",
"vite": "4.5.3",
"vitest": "0.34.3"
},
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"forceConsistentCasingInFileNames": true,
"inlineSources": true,
"lib": ["ES2022", "dom"],
"module": "ES2022",
"module": "Preserve",
"moduleResolution": "Bundler",
"noImplicitAny": true,
"noImplicitReturns": true,
Expand Down

0 comments on commit 40ffc9c

Please sign in to comment.