Skip to content

Commit

Permalink
fix: correctly sets package as esm type, fixes #171 (#172)
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamind authored Jan 2, 2024
1 parent 7326e87 commit e18db3e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"description": "Integrating mobx with lit-element!",
"license": "Apache-2.0",
"repository": "https://github.com/adobe/lit-mobx",
"type": "module",
"main": "lit-mobx.js",
"module": "lit-mobx.js",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion web-dev-server.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module.exports = {
export default {
appIndex: 'demo/index.html',
open: 'demo/index.html',
nodeResolve: true,
Expand Down
4 changes: 2 additions & 2 deletions web-test-runner.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const { playwrightLauncher } = require('@web/test-runner-playwright');
import { playwrightLauncher } from '@web/test-runner-playwright';

module.exports = {
export default {
files: ['test/**/*.test.js'],
nodeResolve: true,
coverage: true,
Expand Down

0 comments on commit e18db3e

Please sign in to comment.