Change module resolution to "bundler"

This commit is contained in:
nachtjasmin 2023-07-28 23:35:11 +02:00
parent bc1a6a72f5
commit 8f7d7802d3
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -1,4 +1,4 @@
import { debug, info, error } from "./logging.js";
import { debug, info, error } from "./logging";
import { runtime, storage } from "webextension-polyfill";
const currentVersion = runtime.getManifest().version;

View file

@ -3,7 +3,7 @@
"module": "ESNext",
"target": "ESNext",
"checkJs": true,
"moduleResolution": "nodenext"
"moduleResolution": "bundler"
},
"include": ["src/", "tests/"]
}