diff --git a/entry-asar/esm/tsconfig.json b/entry-asar/esm/tsconfig.json index 00475c1..adf967d 100644 --- a/entry-asar/esm/tsconfig.json +++ b/entry-asar/esm/tsconfig.json @@ -1,9 +1,10 @@ { - "extends": "../../tsconfig.esm.json", + "extends": "../../tsconfig.json", "compilerOptions": { "module": "ESNext", "target":"ESNext", "outDir": ".", + "moduleResolution": "bundler" }, "include": [ ".", diff --git a/package.json b/package.json index e981d9c..3660c6b 100644 --- a/package.json +++ b/package.json @@ -29,7 +29,7 @@ "provenance": true }, "scripts": { - "build": "tsc -p tsconfig.cjs.json && tsc -p tsconfig.esm.json && tsc -p entry-asar/esm/tsconfig.json && tsc -p entry-asar/cjs/tsconfig.json", + "build": "tsc -p tsconfig.json && tsc -p entry-asar/esm/tsconfig.json && tsc -p entry-asar/cjs/tsconfig.json", "build:docs": "npx typedoc", "lint": "prettier --check \"{src,entry-asar,test}/**/*.ts\" \"*.ts\"", "prettier:write": "prettier --write \"{src,entry-asar,test}/**/*.ts\" \"*.ts\"",